# makes root user's home directory's permissions right.
alias reroot='chown -R root:root /root'
# yes, these are really helpful...
+alias whoareyou='echo -e "Hello, I am a computer named $(hostname)\nand I'\''m very pleased to meet you."'
alias whereami='echo whoa dude, try not to think about it...'
alias why='echo just because.'
fi
if [ -z "$skip_all" ]; then
+
if [ ! -z "$SHELL_DEBUG" ]; then
echo function definitions begin...
fi
fi
}
- # checks the result of the last command that was run, and if it failed,
+ # checks the result of the last command that was run, and if that failed,
# then this complains and exits from bash. the function parameters are
# used as the message to print as a complaint.
function check_result()