Skip to content

Instantly share code, notes, and snippets.

@mikybars
Last active February 10, 2019 23:21
Show Gist options
  • Save mikybars/3dc445b401b38131a48098674e9f7e74 to your computer and use it in GitHub Desktop.
Save mikybars/3dc445b401b38131a48098674e9f7e74 to your computer and use it in GitHub Desktop.
echo -en "Directory ~/bin already exists, overwrite it? [Y/n]: "
read -n 1 action; echo
case "$action" in
'') ;&
[Yy]) rm -rf ~/bin;;
*) echo "Skipping directory ~/bin";;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment