write-image-to-disk/scripts/are-you-sure.sh

12 lines
163 B
Bash
Raw Permalink Normal View History

2023-12-23 20:01:43 +02:00
#!/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