Forum Moderators: bakedjake
The shell is an incredibly useful tool, from stringing together multiple files quickly, to searching for an IP address in your logs, and cutting out everything except the first column, sorting numerically, and only showing the unique results.(1) Most shells have a "reason" why people use them. There are many different varieties, include sh, csh, zsh, bash, etc etc. Most people tend to gravitate toward csh,sh and bash.
Have a look at [howtos.linux.com...] for more information on redirection and pipes, and that howto in general will help quite a bit, I'm sure.
(1): I mention this one because it's a good example of a "one-liner" that takes many commands and works with a changing set of data. Here is the one-liner:
cat /path/to/apache.log ¦ cut -d- -f1 ¦ sort ¦ uniq
Neat, hey? I love *NIX. ;)
MM