Bash Shell Reference (manual)

category command description
basic shell clear clear all previous commands' output text from the terminal
exit (or logout) quits the shell
alias, unalias give a pseudonym to another command
(you may need to enclose the command in quotes if it contains spaces or operators)
xargs launch a command over each of a set of lines of input
directories ls list files in a directory
pwd displays the shell's current working directory
cd changes the shell's working directory to the given directory; can be a relative or absolute path
mkdir creates a new directory with the given name
rmdir removes the directory with the given name (the directory must be empty)
file operations cp copies a file/directory
mv moves (or renames) a file/directory
rm deletes a file
touch update the last-modified time of a file (or create an empty file)
file examination cat output the contents of a file
more (or less) output the contents of a file, one page at a time
head, tail output the beginning or ending of a file
wc output a count of the number of characters, lines, words, etc. in a file
du report disk space used by a file/directory
diff output differences between two files
file permissions chmod change the permissions on a file or group of files
chown change the owner of a file
chgrp change the group associated with a file
umask change the default permissions given to newly created files
searching and sorting grep search a file for a given string or expression
sort convert an input into a sorted output
uniq strip duplicate lines
find search for files by name within a given directory
locate search for files by name on the entire system
which shows the complete path of a command or file
compression zip, unzip create a .zip archive or extract its contents
tar, gzip, gunzip,
bzip2, bunzip2
Unix compression/decompression programs
multi-user environments hostname outputs the name of the current computer/server
w, finger see who is logged in to this computer
.plan (filename) a special hidden file you can create in your home directory, whose contents will be displayed when other users run finger on you. Was originally intended to be used to tell others what you are up to right now. (the Twitter of the 1970s!)
write sends a message to another user logged in to this computer
users and groups whoami outputs your user name
passwd changes your password
groups list the groups to which a user belongs
sudo execute a single command as the super-user
su log in to a shell as the super-user
system information date, time outputs the current date/time
uname print information about the system
process management ps, jobs list the processes you are running; every process has a unique integer id number (PID)
top see what processes are using the most CPU/memory, and show system memory/CPU stats
kill terminate a process
killall terminate a group of processes by name
^C or ^\ (hotkey) terminates (kills) the currently running process
^Z (hotkey) suspends the currently running process
& (special character) when & is placed at the end of a command, that command is run in the background (shell does not wait for the command to finish before returning to the input prompt)
bg, fg starts a suspended process running in the background or foreground
text editors pico, nano crappy but simple text editors (recommended)
emacs a complicated text editor (not recommended)
vi, vim another complicated text editor (not recommended)
network links, lynx text-only web browsers (yes, really)
ssh, sftp, scp connect to a remote Unix server; open a shell on it or send/receive files from it
wget download from a URL and save it to a file on the local hard drive
curl download from a URL and output its contents to the console
pine, mail text-only email programs
programming javac, java compile or run a Java program
python, perl, ruby,
gcc, sml, ...
compile or run programs in various other languages
shell scripting echo, printf like println for the shell; outputs a message or value
read reads a value from standard input
set, unset give values to a variable, or delete a variable
export sets a variable that any sub-programs launched by this shell can see
let for computing integer variable values
source executes commands/statements stored in another file
(useful for re-loading .bash_profile without logging out)
if, [, for, while bash control statements
seq outputs a sequence of integers (used with for loops)
regular expressions sed stream editor; find/replace based on regular expressions
egrep extended version of grep that matches regular expressions
miscellaneous yes output "y" (or another string) over and over
sleep, usleep pause for a given number of seconds or ms
~stepp/banner outputs a message in big letters (on attu only, though you could copy/download it if you are using Linux on a PC)
~stepp/cowsay displays a talking ASCII cow (on attu only, though you could install it if you are using Linux on a PC)
xeyes googley eyes that follow your mouse cursor

Keyboard shortcuts and special characters:
(^X means hold Ctrl key and press X)

key / character description
Up arrow repeat previous command(s)
Home/End or ^A/^E move cursor to start/end of line
* "wildcard", matches any file(s)
Tab auto-completes a partially typed file/directory/command name
^C or ^\ kills the currently running process
^D end-of-input; press this if a program is reading input from your keyboard and you want to notify it that you are finished
^Z suspends (pauses) the currently running process; use fg or bg to resume it
^S never ever press this; worst hotkey ever; totally locks up your shell until you press ^Q

attu