I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday.
What would the preferred book be for someone with an existing knowledge looking to review the topic?
|
|
The best reference for someone with some experience would be BashGuide by Lhunath. It teaches current best practices for modern Bash shells:
It would be wise to avoid the often-referenced Advanced Bash Scripting guide; most of the examples there are misleading or antiquated. BashPitfalls and BashFAQ are also particularly helpful if you are already very familiar with POSIX Bourne shell scripting. Finally, if you're not averse to concise documentation, go straight to my favorite source: |
|||||||||||||||
|
|
bash Cookbook, by Carl Albing, JP Vossen & Cameron Newham O'Reilly ISBN 10: 0-596-52678-4 |
||||
|
|
|
Type info bash on the command prompt. |
|||||||||
|
|
There's nothing like going directly to the Bash maintainer. Here's his FAQ. And an online version of the info file. |
|||
|
|
|
I used this as a reference book when I learned BASH scripting. I thought it was extremely useful, even after the learning period |
|||
|
|
|
I usually wouldn't suggest man pages, however in this case typing 'man bash' not a bad option especially worth a quick read before you do a technical test. I'd also recommend the o'reilly sed & awk book (http://www.amazon.com/sed-awk-2nd-Arnold-Robbins/dp/1565922255), as I guess if you're working in bash, awk will be frequently used. Also http://www.vectorsite.net/tsawk.html is a good place a start with awk. |
|||
|
|
|
This is an excellent free on-line resource: |
|||||||||||||||||
|