Using Bash, but any shell is fine.
feedback
|
closed as not constructive by nhinkle♦, KronoS, Sathya♦ Feb 10 '11 at 4:31
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
As well as Arcege's list, learn how to use:
Plus Bash built-ins like
Also learn about pipes, redirection, parameter expansion, brace expansion, readline, history and completion. oh and...
| |||
|
feedback
|
|
sed - file manipulation, e.g. awk - file manipulation, my favorite idiom is less - paginator tail -f - stream viewer, great for dozens of logs; | |||
|
feedback
|
|
To Arcege's list I'd add:
as in
(of course replace File*|File1 with whatever) | |||
|
feedback
|
|
Those commands that you listed "ls, cd, mv, cp, ..." are all just programs that happen to be installed on every unix and linux system. I often take a look around in the places where these programs reside like The ones I often use are | |||||
feedback
|