12 lines
163 B
Bash
12 lines
163 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
read -r -p "Are you sure? [y/N] " response
|
||
|
case "$response" in
|
||
|
[yY][eE][sS]|[yY])
|
||
|
# Write to disk
|
||
|
;;
|
||
|
*)
|
||
|
# Exit politly
|
||
|
;;
|
||
|
esac
|