- See image below
Excerpts from every core unix program I use by wizard zines:

This is a page from an upcoming zine called โThe Secret Rules of the Terminalโ.
To get an email when the zine comes out, sign up for the zine announcements list!
browse more comics!get the zine!
read the transcript!
basic file stuff
touch
- create filemkdir
- create directorycp
- copymv
- moverm
- deleteln
- create symlinkls
- list directory
how big is it
wc
- word countdu
- file size in bytesdf
- filesystem usage
slice & dice files
sed
- replace regextr
- replace charactergrep
- search filecut
- get columnawk
- get column (+ more)sort
- sort linesuniq
- unique lineshead
- first 10 linestail
- last 10 lines
filesystems
mount
- mount a filesystemumount
- unmountdd
- copy data to a disk
manage processes
ps
- list processeslsof
- list open fileskill
- send a signalpkill
- fancykill
top
- whoโs using CPU?uptime
- time since reboot
permissions
chown
- change ownerchmod
- change permissions
time stuff
time
- measure runtimedate
- current timesleep
- wait X secondscal
- cute calendar
useful with pipes
less
- scroll textcat
- print file contentstee
- stdin -> file + stdoutxargs
- run cmd for each linefind
- find files by name
compression
tar
- make/extract tar filesgzip
- compress with gzipgunzip
- decompresszip
- compress with zipunzip
- decompress
& more
which
- find cmd on PATHman
- read man pagecrontab
- edit crontabmd5sum
- calculate md5sumdiff
- diff files