Skip to main content

A table of useful commands

Here are some useful commands - use man to get more information:

CommandWhat it does
hostnameWhat computer am I on?
pwdWhat directory am I in?
mkdirCreate a new directory.
lsList files in a directory, or a file or files you specify.
cpCopy a file in a new location.
mvMove a file to a new location (removing the original).
rmRemoves a file without asking for confirmation.
rmdirRemoves an entire directory. (Fails if the directory is not empty.)
touchChanges the accessed and modified time on a file, by default to the current time. If the file doesn't exist, create a blank file.
whichTells you where a command is on the filesystem.
catShow the contents of a text file.
headShows the first few lines of a file.
tailShows the last few lines of a file. You can combine head and tail using pipes to pull out a specific block of lines from a file.
lessShow the contents of a text file, interactively.
manUse less to show the man page for a command.
wcCounts the lines, words and letters in its input.
grepSearches for a snippet of text in a file, showing matching lines.
cutPrint certain columns from a text file that's a table of data.
awkCan do similar things to cut. It has its own language to specify in more detail how to process the file, which can be tough to learn, but it is more versatile than cut.
trShort for 'translate'. It lets you replace characters with other characters. This is useful to fix inconsistent data formats or remove characters that another tool can't handle.
sedShort for 'stream editor'. Similar to tr, but it also supports more than single characters allowing for more complex replacements.
sortSorts the lines of a file.
uniqPrints unique lines in a file (i.e. removing duplicates). It does not work exactly as you might expect, only removing duplicates on sequential lines. To get the truly unique output, you need to use sort first.
wgetShort for 'web get', this tool downloads a file from the internet, by default into the current directory.
curl -ODownloads a file from the internet, by default into the current directory.
gzipCompress a file (adding the .gz suffix)
gunzipDecompress a gzipped file (removinf the .gz suffix)
tarCollect up a directory structure into a single file, suitable for transfer
sshSecurely log into a remote computer, based on the address you give it.
scpSecurely copy files from or to a remote computer.