Using Bash, but any shell is fine.
|
closed as not constructive by nhinkle♦, KronoS, Sathya♦ Feb 10 '11 at 4:31
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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...
|
|||
|
|
|
sed - file manipulation, e.g. awk - file manipulation, my favorite idiom is less - paginator tail -f - stream viewer, great for dozens of logs; |
|||
|
|
|
To Arcege's list I'd add:
as in
(of course replace File*|File1 with whatever) |
|||
|
|
|
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 |
|||