Petty things that annoy a Sysadmin, also a How-To avoid madding yourself by remembering Petty things that will annoy you.
sysadmin says: My .bashrc file is not loading!
You could make a sysadmin expend hours trying to debug a .bashrc
just by creating and empty
.bash_profile
in the home directory, this will override the loading of .bashrc
and load the instructions
in the .bash_profile
instead.
ssh server
touch ~/.bash_profile
sysadmin says: What was doing in the server?
Add an space before your command, that will make ignoring capturing the line to the bash history file.
$ echo "hello"
$ history
echo "hello"
history
$ echo "Secret"
$ history
echo "hello"
history