Tag: shell
-
2015-10-04 Barnicle Rock
Pentax 50mm, 2x + 1x + 4ND half-grad. Three exposures +/- 1.3EV. Luminace HDR, Mantuik’08.
-
Shell Scripting Boot Camp | FreedomPenguin
Doing much on the command-line often leads to some repetition. Learn how to roll up a group of commands by making a shell script.
-
Shells on Log, Lummi Island
Hugin did the vignetting on this. Gimp was an interesting combination of layers. Not a bad result.
-
My Terminal Prompt
Some of you might wet your pants in fear of this pictures. It is the anti-MAC. You bore me.
-
Backups: Using `find` Across a Panalopy of Directories
I love using the find command. In DOS, find is like grep. In Linux, find is the most powerful recursive DOS dir /s or Linux ls -r command you could ever put your saddle on. One of the things you can do with find is to avoid directories, using the -prune switch. Like so: find […]
-
Tail the Latest Log File
I’m grateful for Cygwin. I wouldn’t know how to do this in cmd–though I should probably learn how to do it in PoSH. find LogFiles/W3SVC1 -type f | xargs ls -1tr | tail -n1 | xargs tail -F I need to make it an alias now….