# alias hh='history'set an alias for a command - hh = history [man]
# apropos ...keyworddisplay a list of commands that pertain to keywords of a program , useful when you know what your program does, but you don't know the name of the command [man]
# chshchange shell command [man]
# chsh --list-shellsnice command to know if you have to remote into another box [man]
# gpg -c file1encrypt a file with GNU Privacy Guard [man]
# gpg file1.gpgdecrypt a file with GNU Privacy Guard [man]
# ldd /usr/bin/sshshow shared libraries required by ssh program [man]
# man pingdisplay the on-line manual pages for example on ping command - use '-k' option to find any related commands [man]
# mkbootdisk --device /dev/fd0 `uname -r`create a boot floppy [man]
# wget -r www.example.comdownload an entire web site [man]
# wget -c www.example.com/file.isodownload a file with the ability to stop the download and resume later [man]
# echo 'wget -c www.example.com/files.iso' | at 09:00start a download at any given time [man]
# whatis ...keyworddisplays description of what a program does [man]
# who -ashow who is logged on, and print: time of last system boot, dead processes, system login processes, active processes spawned by init, current runlevel, last system clock change [man]