Many unixoid systems share a similar user-land including most Linux distributions.
…once you know the commands and internalized them. Muscle memory FTW!
Replace your code monkeys with a short script
I know you want it, too!
/bin/sh often a symlink to /bin/bash. But not on Ubuntu Linux!
Practically all Linux distributions and Unices like FreeBSD and MacOS X.
You probably don't know most of the features yet
Z shell is a very powerful alternative to Bash.
Ctrl-S suspends output (XOFF), Ctrl-Q resumes output (XON).
"Typed" completions
for $VAR in $LIST; do your_stuff; more_stuff; done
while $CONDITION; do your_stuff; more_stuff; done
if [[ $COND1 ]]; then do_foo; elif [[ $COND2 ]]; then do_bar; else do_baz; fi
case $WORD in $PATTERN1) do_foo ;; $PATTERN2) do_bar ;; *) do_baz ;; esac
Once you grok the basics, it's very powerful
Use : to get in command mode.
set -o vi
In general: <count><command><scope>, e. g. 5dw to cut the five words following the cursor.
Happy little camper if connection to remote host breaks.
Get a good .screenrc file with a proper status line.
caption always "%{= kw}%-w%{= BW}%n %t%{-}%+w %-= %c"
/
#