Skip to content

Instantly share code, notes, and snippets.

@ThereExistsX
Created October 11, 2017 23:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThereExistsX/536c4662b18a5a357809196bba54a184 to your computer and use it in GitHub Desktop.
Save ThereExistsX/536c4662b18a5a357809196bba54a184 to your computer and use it in GitHub Desktop.
You asked for it, now here it is!
#!/bin/bash
# For all your Nazi Killin' needs
if [ "$1" == "--help" ];
then echo "Usage: <number> <method>"
elif [[ $# -eq 0 ]] ;
then echo "I killed a few nazis for you, slacker."
else echo "You kill $1 Nazis by way of $2. It feels so good."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment