Ubuntu Terminal Commands
The commands that actually get used day to day — from your first cd to systemd, cron, and SSH keys.
<cmd1> | <cmd2>
pipes the output of <cmd1> into the input of <cmd2>, e.g. ls -la | grep .conf
xargs
builds and runs a command from piped-in input, e.g. find . -name "*.log" | xargs rm
du -sh * | sort -h
shows the size of every item in the current directory, sorted smallest to largest
screen -S <name>
starts a named terminal-multiplexer session that survives disconnects (see the tmux page for the more modern alternative)