-
-
Save b1nary/a9324af73d70ebd3bf69a4dfcc99a248 to your computer and use it in GitHub Desktop.
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 | |
if [ $1 = "love" ]; then | |
if [ "$EUID" -ne 0 ]; then | |
echo "i have a boyfriend" | |
else | |
echo "i love $2 too" | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment