When I first began bash scripting I spent a lot of time online trying to find resources for various tasks and things were scattered across tons of different forums and newsgroups.

I'm not completely sure if the idea of a list of resources for those new to bash scripting is something fitting of SO's community wiki or not. I'm posting on the assumption it will be down-voted if this isn't befitting.

Please post any online sources you find very useful either as an administrator or that you found useful during your learning process.

link|improve this question
The resource I was sent that made me think of this topic was: tldp.org/LDP/abs/html – sparks May 12 '09 at 23:54
feedback

9 Answers

up vote 7 down vote accepted

Advanced Bash-Scripting Guide

You can download it and keep it as a local reference.

link|improve this answer
great resource, thx – lillq Jun 5 '09 at 15:15
feedback

A small and incomplete list of some guides/tutorial

Don't take the ABS too serious. It's a great collection and a good guide, but it's not (A)dvanced.

bash-hacker.org/wiki itself may or may not be of interest, the focus is not directly to provide tutorials, more background- or base info (like grammar and syntax).

link|improve this answer
You're too kind to the ABS. It's a pile of broken rubbish, and worse than that, it claims to be and looks like a decent guide. As a result, it attracts a lot of newbies in the field which in turn learn horrible practices. It's the bane of UNIX shell scripting and it should be abolished. Educational sources should be exemplary. – lhunath May 13 '09 at 7:00
feedback

The two best resources I've found are:

http://www.shell-fu.org/ - which gives you a cookbook style approach to learning scripts . this can often be quicker than learning a reference guide.

http://tldp.org/LDP/abs/html/ - which gives you the a complete reference to Bash.

I've used both of these. Hope that helps. The Bash Cookbook by OReilly is also very good.

link|improve this answer
I would give you +1 for the Advanced Bash Scripting Guide, but -1 for shell-fu. The majority of stuff on there is horrible. – Jeremy Cantrell May 13 '09 at 1:14
Nothing about the ABS is worth points. It may be lengthy and have a lot of knowledge, but it has an equal amount of bugs AND bad practices. Something people should stay far away from when trying to learn how to do something and do it right, without the knowledge to filter out the junk. – lhunath May 13 '09 at 7:01
feedback

Check out commandlinefu and these two articles for some great bash tips.

link|improve this answer
feedback

Bash Programming intro HOWTO and Advanced Bash scripting howto

For examples of usage (when you're not sure) check out scripts on your system in /etc/rc.d/

link|improve this answer
feedback

If you like "computer based training" (i.e. videos), I find that LinuxCBT is a pretty good resource.

They have courses on Bash and other scripting languages.

link|improve this answer
feedback

The two best places are probably http://tldp.org/LDP/abs/html/, and http://mywiki.wooledge.org/BashGuide. the bash faq at http://mywiki.wooledge.org/BashFAQ is well worth taking a poke through for regular gotchas as well.

link|improve this answer
feedback

My most enlightening bash moments have come from asking questions in #bash on irc.freenode.net (only after trying every other resource mentioned on this page, of course...)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.