Skip to content

Instantly share code, notes, and snippets.

@m3nd3s
Created March 11, 2011 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m3nd3s/865265 to your computer and use it in GitHub Desktop.
Save m3nd3s/865265 to your computer and use it in GitHub Desktop.
rm to "baianos"
#/bin/bash
#
# now, you must be edit you ~/.bashrc or ~/.bash_profile and add the command:
# alias rm="/path/to/rm_to_from_bahia.sh"
#
# Now you're safe!
echo "ARE YOU SURE YOU WANT TO DELETE ALL THIS SHIT?"
read RESP
if [ "${RESP}" = "y" -o "${RESP}" = "Y" ]
then
echo "REALLY SURE?"
read RESP
if [ "${RESP}" = "y" -o "${RESP}" = "Y" ]
then
echo "I DON'T BELIEVE YOU"
else
echo "Ufa!"
fi
else
echo "You're a rational person"
fi
@fsouza
Copy link

fsouza commented Mar 11, 2011

Making off: Making off rm to baiano

LOL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment