Shell stuff
From ihaveahax's Site
				Some shell stuff I need to keep searching for.
Comparison
if [ abc = def ]; then
    echo "Valid"
fi
Arguments
if [[ $# -eq 0 ]]; then
    echo "No arguments"
fi
echo "First arg: $1"
for arg in "$@"; do
    echo "Arg: $arg"
done