Which shell command(s) would you describe as amazing?
One of my favorite is the following bash command: exec 1> >(logger -s -t $(basename $0)) 2>&1 which added at the top of your bash causes all stdout and stderr to be direct to syslog while instructing the logger to include the name of the script (via ...
Oct 28, 2016CS2CE