September 9, 2008
Ben Hutchings has noted a quirk in the chmod syntax: If you use the “chmod o-x” syntax, but omit the “o” (Others) (or the “u” (User) or “g” (Group)), it will default to “a” (All).
So “chmod -x foo” becomes “chmod a-x foo“; similarly, “chmod +x foo” becomes “chmod a+x foo“
Leave a Comment » |
unix |
Permalink
Posted by unixshell
September 1, 2008
Interesting list of 15 examples of bash history syntax.
Most people probably know #5:
# !ps
ps aux | grep yp
I didn’t know #13, that looks really useful for arcane purposes:
# cp ~/longname.txt /really/a/very/long/path/long-filename.txt
# ls -l !cp:2
ls -l /really/a/very/long/path/long-filename.txt
1 Comment |
unix | Tagged: bash, cli, history, linux, MLP, unix |
Permalink
Posted by unixshell