Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Bash Cookbook 278

Chad_Wollenberg writes "Anyone who has used a derivative of Unix over the past 20 years has used Bash, which stands for Borne Again Shell. The geek in all of us makes us want to extend our ability to rule the command line. To truly master a Unix environment, you need to know a shell, and Bash is easily the most popular of them. Any Unix/Linux/BSD administrator knows the power at your fingertips is fully extended by what you can do within the Bash environment, and all of us need the best recipes to get the job done." Keep reading for the rest of Chad's review.
Bash Cookbook
author Carl Albing, JP Vossen, Cameron Newham
pages 598
publisher O'Reilly
rating 9
reviewer Chad Wollenberg
ISBN 978-0-596-52678-8
summary A good book for intermediate and above users of Bash
Enter Bash Cookbook. Properly named for the series of O'reilly books that gives you valuable information on subjects in the form of recipes, this book was refreshing in that it was properly organized, and surprisingly contemporary, even citing Virtualized platforms as a way to try out different OS's for Bash. The book does a good job of pointing out the different operating systems that do run Bash, even citing Cygwin for Windows. They also use the POSIX standard, so that all of the examples are portable across platforms.

Bash Cookbook is by no means for the feint of heart. It seems that the book is meant for intermediate and above users of Bash. However, the first several chapters do a significant job of over viewing basic concepts of Bash navigation and combing simple commands. The book quickly changes gears to complex statements on how to get things done in Bash.

By Chapter 7, Bash Cookbook extends out of Bash commands and begins exploring combining the power of bash scripting with useful command such as grep, awk, and sed. To quote the authors, "if our scripting examples are going to tackle real-world problems, they need to use the wider range of tools that are actually used by real-world bash users and programmers." And that is exactly what they do. This chapter alone gave me the ability to do more in the command line environment simply by explaining the functions of the scripts put forth. That is something that any reader, intermediate to expert, can take from this book. The detailed explanations really do give everyone the ability to learn something about the commands, and the references to additional resources often lead me to the computer, looking up further details.

I found Chapter 11 to be very useful (pun intended) finally grasping some concepts on the find command that have previously escaped me. From Chapter 12 on, the book focuses on writing useful and complex scripts. This is where the book really begins to shine for the Unix enthusiast and system administrator. The scripts found in Chapter 12, and their elaborate descriptions begin to show the true power of Bash scripting, and how much you can automate. Chapter 14 is about securing your scripts, and is a heavy read, but well worth reading for any administrator that would be using their scripts in a production environment.

Just when you think this book has reached its limits, it gives very handy customization examples in Chapter 16 on how to configure and customize Bash. And also goes into common mistakes made by the novice user. Combine all of that with the Appendices for quick reference, and this book has not left my side since it arrived. While I would not recommend this book for the novice user, I would recommend this book to any system administrator that has to work with Unix or Linux. If nothing else, the examples given here are full of good, reusable code to make tasks easier in your day to day functions. Well done.

You can purchase Bash Cookbook from amazon.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
This discussion has been archived. No new comments can be posted.

Bash Cookbook

Comments Filter:
  • BASH != Bourne Shell (Score:5, Informative)

    by llamalad ( 12917 ) on Wednesday August 13, 2008 @02:02PM (#24587003)

    'sh' is the Bourne shell.
    'bash' is the Bourne Again SHell.

    They're not the same.

    • by laejoh ( 648921 ) on Wednesday August 13, 2008 @02:08PM (#24587105)
      It doesn't matter. If you code like I do you don't need to worry about the difference between /bin/sh and /bin/bash:

      <begin file A>
      #!/bin/bash

      perl <<EOP
      print "hello world\n";
      EOP
      <end file A>

      <begin file B>
      #!/bin/sh

      perl <<EOP
      print "hello world\n";
      EOP
      <end file B>

      See? Both work, it's so easy!
      • Now, here's what I'd like to know...

        Are you serious here, showing that both shells support useful features, or are you being facetious, showing that both shells are merely acceptable stepping-stones to run Perl code?

        I love CLIs but my feeling on most of them is that they're more than a little archaic - the lack of any non-trivial datatypes (and particularly the lack of support for passing structured data or live objects between shell processes) makes it needlessly difficult to get things done - I believe th

        • by CastrTroy ( 595695 ) on Wednesday August 13, 2008 @02:35PM (#24587649)
          The lack of structured data and live objects is a feature, not a bug. The fact that everything is a string, and that everything can be piped between all the different commands means that you can string together commands in new and exciting ways that nobody ever thought was possible. Making all the commands pass around different types of objects means that all the other commands have to be aware of all these other datatypes, and have to know how to handle them. If you want something with objects and structured data in the shell, then there's MS PowerShell. But maybe there's a reason it hasn't caught on yet.
          • by Tetsujin ( 103070 ) on Wednesday August 13, 2008 @03:13PM (#24588255) Homepage Journal

            The lack of structured data and live objects is a feature, not a bug. The fact that everything is a string, and that everything can be piped between all the different commands means that you can string together commands in new and exciting ways that nobody ever thought was possible. Making all the commands pass around different types of objects means that all the other commands have to be aware of all these other datatypes, and have to know how to handle them.

            This is true of textual data as well - you're simply glossing over the complexity of serializing and re-parsing any non-trivial data structure in textual form... You've ignored the fact that for any two tools to work together, their assumptions about the structure with which data is encoded over the stream have to match.

            See, if your text-encoded data is simple enough that you can simply choose a character as a field delimiter and another as a record separator, it's easy to split your data into individual records and fields again. It gets a little harder if you want to provide for the possibility that your records may actually contain the delimiter characters (then you're into parsing - at least enough parsing to distinguish between an escaped character and an unescaped one) Setting up the format so you can really encapsulate anything - that reaches the point where it's worth having a tool whose only job is interfacing with this format...

            The problem here is that normally when you want to interpret some encoded form of a piece of data, you first translate it into something that's easier to work with. But in BASH (and most CLI shells, I believe) there is no "more convenient form" to which you can readily translate any moderately complex structure. (Consider, for instance, how you would implement an XML parser for Bash - as an external command it simply wouldn't work... it'd have to be done as a Bash plug-in module, and even then its capabilities would be limited. And then suppose you want to filter the parsed data and pass it to another process? You've got to re-encode it, and then the next process has to know how to decode this encoding (probably still XML) as well...

            I contend that the "encode everything as a string" mentality was an asset, due to computer limitations in the time period in which the convention started - but these days I think it's pretty limiting.

            If you want something with objects and structured data in the shell, then there's MS PowerShell. But maybe there's a reason it hasn't caught on yet.

            I think Powershell has been progressing (in terms of popularity, I mean) quite satisfactorily... The reason it hasn't caught on with me, however, is 'cause I want a Unix solution (that is, runs on Unix, and fairly Unix-styled), not a Windows one - and while I agree with the logic behind some of their design decisions (like the verb-noun convention for command names) I don't like the consequences (the language is much too verbose for my tastes...)

            I think it's a step in the right direction but not quite what I'm looking for.

            Assuming Powershell hasn't been embraced and taking that as a sign that one particular facet of its design was a bad idea is pretty laughable. Any new tool takes time to be adopted - and Powershell is a tool for a fairly small niche - CLI users on Windows.

            • Re: (Score:3, Insightful)

              by hal9000(jr) ( 316943 )
              You've ignored the fact that for any two tools to work together, their assumptions about the structure with which data is encoded over the stream have to match.

              Dude, it is upto the programmer to format the data properly, including any escaping when piping strings from one proggie to another.

              Shell scripts aren't supposed to replace more robust programming languages. I think it silly to want to parse XML via shell scripts, BUT, a shell script could pull useful data from an XML file.

              So let me stat
        • by daedae ( 1089329 ) on Wednesday August 13, 2008 @02:36PM (#24587669)

          True story:

          A guy I go to school with (I'm in CS, he's in physics) used to talk about how he was a Bash wizard. Since he was generally talking about writing scripts to submit jobs to a PBS-based cluster, I assumed he meant just in terms of rapidly submitting a large variety of jobs. One day he complains to me that his simulations were slow and wanted me to look at it with him to help him speed them up. So I say fine, send me the file...

          He'd written a particle physics Monte Carlo sim using Bash and Linux command line tools (in particular, there were calls to bc everywhere).

        • by Unordained ( 262962 ) * <unordained_slashdotNOSPAM@csmaster.org> on Wednesday August 13, 2008 @03:00PM (#24588055)

          From what I've seen (not used it) the new Windows PowerShell (Monad) is designed around "piping" data between apps that actually exchange .Net objects, including lists, maps, etc. of objects -- rather than character streams. There seem to be generic commands that provide sql-like "select / where" filtering clauses, etc., too. You might explore that, see if it fits your needs. It looks awfully verbose to me though, I'd have to find a way to set aliases for most everything. Just a thought.

          • From what I've seen (not used it) the new Windows PowerShell (Monad) is designed around "piping" data between apps that actually exchange .Net objects, including lists, maps, etc. of objects -- rather than character streams. There seem to be generic commands that provide sql-like "select / where" filtering clauses, etc., too. You might explore that, see if it fits your needs. It looks awfully verbose to me though, I'd have to find a way to set aliases for most everything. Just a thought.

            Yeah, I learned about Monad a few years back, and have tried Powershell, briefly anyway - it's definitely interesting but various things about it don't really suit my tastes. I'm trying to come up with something that does.

        • by hachete ( 473378 ) on Wednesday August 13, 2008 @03:28PM (#24588525) Homepage Journal

          What are these "datastructures" you speak of?

    • Re: (Score:3, Informative)

      by againjj ( 1132651 )
      Except for the fact that sh is generally symlinked to bash on Linux systems:
      $ ls -l /bin/sh
      lrwxrwxrwx 1 root root 4 Mar 10 2006 /bin/sh -> bash
      • by WillKemp ( 1338605 ) on Wednesday August 13, 2008 @02:25PM (#24587463) Homepage

        Except for the fact that sh is generally symlinked to bash on Linux systems:

        True. But if bash is invoked as 'sh', it works like sh.

        • by againjj ( 1132651 ) on Wednesday August 13, 2008 @03:32PM (#24588579)

          No, it doesn't. There are a couple of changes, like ~/.bashrc is not read, but mostly it stays as-is. Basically, if you invoke bash as sh, AND stay inside the sh syntax/commands, then bash works like sh.

          -sh-3.00$ /bin/sh
          sh-3.00$ help bind
          bind: bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq]
          [-x keyseq:shell-command] [keyseq:readline-function or readline-command]
          Bind a key sequence to a Readline function or a macro, or set
          a Readline variable. The non-option argument syntax is equivalent
          to that found in ~/.inputrc, but must be passed as a single argument:
          bind '"\C-x\C-r": re-read-init-file'.
          [...]
          sh-3.00$ echo $PS1
          \s-\v\$
          sh-3.00$ export PS1='myprompt '
          myprompt export PS1='\s-\v\$ '
          sh-3.00$ exit
          exit
          -sh-3.00$

          Here, bind and PS1 (help maybe?) are both in bash but not sh.

        • Re: (Score:3, Insightful)

          This just bit me in the ass a couple weeks ago. Debian/Ubuntu don't symlink to bash, which is what I'd assumed. They symlink to "dash" -- a stripped-down shell where stuff you expect to work doesn't.

          For the life of me I couldn't figure out why my perfectly valid bash one-liner in my crontab wouldn't work. Some Googling and cursing Debian later, and /bin/sh -> /bin/bash, and my cron jobs are working as expected.

          Now, someone can disagree with me here, and I know you will. The stated purpose of this change

      • Re: (Score:3, Insightful)

        by dfn_deux ( 535506 )
        An interesting observation, which also points out something that I noticed in the review text. He says that all the scripts in the book are "POSIX" compliant, but AFAICT bash extends the POSIX standard bourne shell "/bin/sh" with a bunch of features which are not part of the posix standard. Calling bash from a "sh" symlink starts bash in POSIX compliance mode wherein it acts exactly like a standard bourne shell. It seems if the book has strictly POSIX friendly scripts that it isn't really a bash book so muc
      • by Benanov ( 583592 ) <brian...kemp@@@member...fsf...org> on Wednesday August 13, 2008 @02:48PM (#24587835) Journal

        In Ubuntu since edgy, sh has been symlinked to dash instead. This allowed for a much faster boot while breaking all the "sh" scripts that used bash-specific syntax.

        There was a bunch of whining about it when it happened but I think everyone fixed their scripts and shut up.

        • Re: (Score:3, Insightful)

          by swillden ( 191260 )

          That fact does cause a lot of problems with poorly-written third-party scripts, though. I spent two full days scratching my head over why I couldn't run the IBM Rational Software Architect installation program on my Ubuntu box, even though it had worked just fine on Debian. Finally I realized that the installation script used BASH features, but tried to run under /bin/sh.

          That's just one example, and it's the installer that's at fault, not Ubuntu, but I've run into enough of them that I make a habit of c

      • by Krishnoid ( 984597 ) on Wednesday August 13, 2008 @03:36PM (#24588663) Journal
        Generally -- except in one notable case [ubuntu.com], and expected in Debian lenny [debian.org]. As you can imagine, this caused a lot of complaints. From what I skimmed there and other places, the attitude is that /bin/sh under Debian should be a fully POSIX-compliant shell, and if you want to use bashisms, start your program with #!/bin/bash.
  • by Tetsujin ( 103070 ) on Wednesday August 13, 2008 @02:03PM (#24587033) Homepage Journal

    So, what, does this refer to people who act like they're going to rip your heart out of your chest, only it all turns out to be a ruse so they can kick you in the balls?

    • by khasim ( 1285 ) <brandioch.conner@gmail.com> on Wednesday August 13, 2008 @02:11PM (#24587187)

      Who already own "sed and awk" and buy a book that is supposedly about Bash scripting only to find out that the advanced section replicates what is in the sed and awk book. Which is very annoying.

      Not that it's a bad book. I just believe that it should have been more focused on Bash only scripting.

      If you want to learn about sed and awk, buy the sed and awk book. If you want to learn Bash scripting, there are a LOT of more useful sites online.

      • Re: (Score:3, Insightful)

        by CastrTroy ( 595695 )
        Maybe we should all have to buy different books on grep too. Why not separate books on dd, ls, df, free, etc? sed and awk are a very integral part of bashscripting. You can't talk about bash without talking about sed and awk. Same way you can't talk about Perl without talking about regular expressions. Well, on second thought, you could, but you'd be leaving out a huge part reason for using Perl in the first place.
        • That just shows ignorance of how much power exists within bash without using sed or awk. It also shows a lack of understanding of how powerful each sed and awk are as individual programs (or language, in awk's case).

          You can write some substantial software in awk, and in bash, or in a combination of both, or using sed.

          Of course, mentioning 'make' in a book on C programming makes sense, but not realizing how powerful make is is probably a result of how people associate it with programming only.

          (example: I ha

          • by CastrTroy ( 595695 ) on Wednesday August 13, 2008 @03:00PM (#24588075)
            I'm not sure where our opinions differ. sed and awk are both extremely powerful. bash is extremely powerful. One of the things that makes bash powerful is the existence of sed and awk. sed and awk don't require bash, and bash doesn't require sed and awk. Yet if you write a book on using bash, and leave out sed and awk, you would be doing your readers a great injustice.
        • separate books on dd, ls, df, free, etc?

          Dude, seriously? Where? Cool!

          Oh, wait, you were being sarcastic. Dammit. Don't get my hopes up like that.

    • The "feint" is a feint; it draws your attention from the next sentence: However, the first several chapters do a significant job of over viewing basic concepts of Bash navigation and combing simple commands.

      Over viewing? Is that viewing too much? Combing simple commands? I could go on, but I can't go on.
  • Bourne-Again Shell (Score:5, Informative)

    by cos(0) ( 455098 ) <pmw+slashdot@qnan.org> on Wednesday August 13, 2008 @02:03PM (#24587037) Homepage

    Bourne Again Shell [gnu.org], not Borne.

  • by UltraMathMan ( 1139987 ) on Wednesday August 13, 2008 @02:04PM (#24587055)
    Not knocking the book, especially as I haven't read it, but I've found the Advanced Bash Scripting Guide (available free online) http://tldp.org/LDP/abs/html/ [tldp.org] extremely helpful on numerous occasions.
    • Re: (Score:2, Insightful)

      by Jansingal ( 1098809 )

      even though there is a lot of free info, some people like a hard copy of something.

      yeah, you could print the same info, but it is not bound, etc.

  • by homb ( 82455 )

    It's not " Borne Again Shell", but "BOURNE Again Shell".
    Stephen Bourne created sh from which bash is derived.


  • :

    echo "I'm an old Bourne Shell"
    echo "Early on the first line was a colon to indicate a bourne shell"
    echo "And that was before the convention of #!/bin/sh"

  • by gardyloo ( 512791 ) on Wednesday August 13, 2008 @02:06PM (#24587077)

    I may even buy the book based on the review.

    Leaving aside stuff like not for the feint of heart, which is just poor editing, what the hell does I found Chapter 11 to be very useful (pun intended) mean?

          Maybe it's the ultimate meta-pun, where there was no pun in the first place, but the author pointed out that one was intended, so one was slipstreamed into the statement.

  • Unix you say.. (Score:5, Informative)

    by The Moof ( 859402 ) on Wednesday August 13, 2008 @02:08PM (#24587113)
    As a BSD user (OpenBSD and FreeBSD), the only way I run into bash is to explicitly go and install it. Actually, the only place I have run into bash as a default install is on Linux.

    I run into alot more sh, ksh, csh, and tcsh.
    • Re: (Score:2, Informative)

      by PetiePooo ( 606423 )

      As a BSD user ... I run into alot more sh, ksh, csh, and tcsh.

      Haven't they heard the news in the BSD camps? Scripting in csh is considered harmful. [faqs.org] ;)

      In all seriousness, having scripted in both, I would consider bash more powerful than ksh, and I avoid csh/tcsh scripting for some of the (still valid) reasons listed in the legendary tome linked above.

      (Although, if performance isn't an issue, I usually attempt to stretch good old /bin/sh to its limits first. I even had it emulating expect for one task, sandwiching telnet between two scripts where the later sent

      • Re: (Score:2, Informative)

        by Anonymous Coward

        ksh is far more powerful than bash. ksh93 has associative arrays, floating-point arithmetic, and coprocesses, just to name a few of the features missing in bash. In general, I've found that anything I could do in bash I could do in ksh.

  • by mea37 ( 1201159 ) on Wednesday August 13, 2008 @02:10PM (#24587131)

    Well, ok... Cookbook sucks!

    Oh, did I parse that wrong?

  • by Ex-Linux-Fanboy ( 1311235 ) on Wednesday August 13, 2008 @02:16PM (#24587287) Homepage Journal
    Bash has been my favorite interactive shell for 12 years now. Basically, *NIX command shells, which in the 1980s had a lot of interesting ideas presented (csh, tcsh, ksh, etc.), have basically settled down. The only shells I have seen in use on modern *NIX systems (read Linux and the odd BSD) is Bash and Ash. Ash has had a resurgence in popularity lately because a version of it is part of Busybox (along with a tiny implementation of awk).

    Bash takes Bourne Shell scripting (which was always more powerful than Csh scripting), and combines it with Csh's and Tcsh's best interactive features (! expansion, arrow history, tab completion, etc.).

    The last time I saw people try to have a different paradigm with *NIX shells was with the 'rc' and 'es' shells of the 1990s, which was an attempt to introduce functional programming to the shell. Both shells stopped being actively developed before they were full featured (they never had job control, for example).

    More recently, there is a new shell out there called the 'fish' shell, which I tried and didn't like. I don't like its requirement to have everything in a bunch of colors; a true *NIX shell, in my opinion, should not try and make everything colorful (I also despise ls with colors).

    Looks like ksh finally was open sourced, but by then Bash had become the standard shell you're guaranteed to have in just about any Linux distribution (exceptions being tiny distributions which use Busybox for everything).

    More information, of course, is on the Wikipedia. [wikipedia.org].

    • In my experience, any ksh script would run under bash. It was my impression that bash was a catch-all, taking the better ideas from Korn and Bourne.

    • by thogard ( 43403 )

      One key issue is that systems on boot may not have access to all the libraries that make bash a nice human interface. A core system needs a shell that uses no shared libraries at all and does only simple things to start up programs (like a real shell)... If all that can be kept in nice clean text files that include #!/bin/sh to indicate that they won't be doing anything complicated, then it makes it much easier for developers. While I love to use bash, I wouldn't ever consider if for the rc scripts or sin

  • by john_anderson_ii ( 786633 ) on Wednesday August 13, 2008 @02:18PM (#24587321)
    Bash is just plain awesome, I'm always trying to find ways to push it even further, I'm checking to see if this book is on safari right now.

    I do a lot of work in bash. I'm a Linux administrator by trade, so I think in bash all day long. For my company I've developed a set of bash libraries that we call the BPE. These libraries implement a hashmap, stack, linked list, MySQL API, SQLite API and all sorts of other useful things that one doesn't want to re-invent for every script. I'm in the process of writing man pages for the several libraries right now, and I think I'll sourceforge the project when the mans are complete. It's great to be able to begin a new script when a hashmap might be useful, and be able to do something like:

    $USE_BPE
    use "hashmap"

    hm_create "myMap"
    hm_set "myMap" "key" "value"
    value="$(hm_lookup "myMap" "key")"
    echo "$value"

    In short, if organized correctly, bash can be used where a senior sysadmin would normally reach for perl or python. This is often helpful when your juniors have a good grasp of bash, but aren't very strong in other languages.
    • Re: (Score:3, Insightful)

      by Sancho ( 17056 ) *

      That sounds pretty neat and all, but wouldn't you be better served training people on a language which has these constructs built in? The juniors are still having to learn new programming syntax--only instead of learning Perl, they're learning something that's not used anywhere else in the world.

      Is this a way of enforcing loyalty? :)

      • Why would they need to lean new syntax? We still use bash syntax when writing BPE scripts. They need only to learn the names, arguments, and returns of the function calls. Just like they would for any software product. It's not like the BPE implementation is restricting them from learning perl or python or anything else

        Doing advanced things in bash is a personal hobby mine, and if it proves useful to other admins and the company as well, than that's just a bonus.
        • by Sancho ( 17056 ) *

          They're learning the syntax of your library. They could be learning the syntax of Perl. They could learn both, but they're duplicating effort then.

          I'm not knocking making the libraries itself, but it just seems like time spent learning your library (for the job) could be spent learning something which is more universally used.

        • Doing advanced things in bash is a personal hobby mine, and if it proves useful to other admins and the company as well, than that's just a bonus.

          Unless you leave or are hit by a bus, and then some poor slob has to come in and reverse-engineer all your cleverness to figure out how to keep your company's systems working.

          If it's a personal hobby of yours, tinker with it at home. Don't be forcing everybody you work with to take up your hobby too.

    • Re: (Score:3, Informative)

      by Abcd1234 ( 188840 )

      In short, if organized correctly, bash can be used where a senior sysadmin would normally reach for perl or python. This is often helpful when your juniors have a good grasp of bash, but aren't very strong in other languages.

      You mean it makes it possible to use the wrong tool for the job, in order to avoid a little training.

      No offense, but that's a *really* terrible idea.

      • by afabbro ( 33948 )

        ...particularly because they will likely move to another job someday and these libraries will no longer be available.

        Right tool for the right job is a better skill to learn.

  • by Animats ( 122034 ) on Wednesday August 13, 2008 @02:26PM (#24587475) Homepage

    598 pages for a book on a shell? Oink!

    A little plastic cheat sheet would be far more useful. The important thing is to get the basic ideas and the syntax. That requires a small, tightly written book. In an oinker of a book, the concepts get lost in the verbiage.

    • It could be argued that Bash has more language features than many programming languages.

      Bash is a huge and very powerful system for both shell work and programming work. The programmable tab-completion being one of my favourites, spell checking is fun too, although I still prefer tcsh's syntax.

  • by ylikone ( 589264 ) on Wednesday August 13, 2008 @02:30PM (#24587549) Homepage
    This book covers the GNU Bourne Again Shell, which is a member of the Bourne family of shells that includes the original Bourne shell sh, the Korn shell ksh, and the Public Domain Korn Shell pdksh. This book is for anyone who uses a Unix or Linux system, as well as system administrators who may use several systems on any given day. Thus, there are solutions and useful sections for all levels of users including newcomers. This book is full of recipes for creating scripts and interacting with the shell that will allow you to greatly increase your productivity.

    Chapter 1, "Beginning bash" covers what a shell is, why you should care about it, and then the basics of bash including how you get it on your system. The next five chapters are on the basics that you would need when working with any shell - standard I/O, command execution, shell variables, and shell logic and arithmetic. Next there are two chapters on "Intermediate Shell Tools". These chapters' recipes use some utilities that are not part of the shell, but which are so useful that it is hard to imagine using the shell without them, such as "sort" and "grep", for example. Chapter nine features recipes that allow you to find files by case, date, type, size, etc. Chapter 10, "Additional Features for Scripting" has much to do with code reuse, which is something you find even in scripting. Chapter 11, "Working with Dates and Times", seems like it would be very simple, but it's not. This chapter helps you get through the complexities of dealing with different formats for displaying the time and date and converting between various date formats.

    Chapter 12, "End-User Tasks As Shell Scripts", shows you a few larger though not large examples of scripts. They are meant to give you useful, real world examples of actual uses of shell scripts beyond just system administration tasks. Chapter 13, "Parsing and Similar Tasks", is about tasks that will be familiar to programmers. It's not necessarily full of more advanced scripts than the other recipes in the book, but if you are not a programmer, these tasks might seem obscure or irrelevant to your use of bash. Topics covered include parsing HTML, setting up a database with MySQL, and both trimming and compressing whitespace. Chapter 14 is on dealing with the security of your shell scripts. Chapters 15 through 19 finish up the book starting with a chapter on advanced scripting that focuses on script portability. Chapter 16 is related to the previous chapter on portability and is concerned with configuring and customizing your bash environment. Chapter 17 is about miscellaneous items that didn't fit well into any other chapter. The subjects include capturing file metadata for recovery, sharing and logging sessions, and unzipping many ZIP files at once. Chapter 18 deals with shortcuts aimed at the limiting factor of many uses of bash - the typing speed of the user and shortcuts that cut down on the amount of typing necessary. The final chapter in the book, "Tips and Traps", deals with the common mistakes that bash users make.

    All in all this is a very handy reference for a vast number of the tasks that you'll come across when scripting with the bash shell along with well-commented code. Highly recommended.

  • Obligatory. (Score:4, Funny)

    by pushing-robot ( 1037830 ) on Wednesday August 13, 2008 @02:32PM (#24587585)
  • Holding Out (Score:3, Funny)

    by Jah-Wren Ryel ( 80510 ) on Wednesday August 13, 2008 @02:34PM (#24587643)

    I'm still waiting for jbosh, the Jason BOurne SHell, to be released. I hear it can really kick some ass.

  • Anyone who has used a derivative of Unix over the past 20 years has used Bash

    Wow, we could have avoided the entire SCO since AIX is not a derivative of UNIX.

  • by AP31R0N ( 723649 ) on Wednesday August 13, 2008 @02:49PM (#24587857)

    It's a cookbook!!!

    • If I could write me a script that can make me a grilled cheese sandwich and I would very happy.

      • by AP31R0N ( 723649 )

        If you upgrade from Girlfriend 4.0 to Wife 2.0, you just might be able to do that. Just keep in mind that Wife 2.0 is more expensive in the long run and more likely to give you 403s. The cost of uninstallation if she finds Girlfriend 5.0 running in the background can be life ruining. But if you give Wife frequent upgrades, i hear it can be quite wonderful.

        • My wife 1.0 beta (way past the alpha years) recently spawned a child process. She takes some resources, but so far the experience has been well worthwhile.

          Hmm, maybe I can try again to get her to cook/code me some grilled cheese. I know she has the algorithm and the resources, but she never seems to run that code.

  • by plasticsquirrel ( 637166 ) on Wednesday August 13, 2008 @02:55PM (#24587953)

    To truly master a Unix environment, you need to know a shell, and Bash is easily the most popular of them.

    Bash is a fine shell, but it's certainly not the standard on Unixen today. Most versions of Unix still have the Korn/Posix Shell as the most common shell. This is certainly true in Solaris, HP-UX, and AIX. The BSD's typically don't use Bash, and favor more traditional, light-weight shells. However, some versions may package Bash in their distributions.

    Bash is really only the common default shell on Linux, from what I have seen. Things learned for Bash have similar syntax in other shells, but teaching newbies that Bash is the standard shell is a very bad, Linux-centric idea that leads to Bash-isms (people trying to use Bash-specific features in other shells).

  • by InterGuru ( 50986 ) <(moc.urugretni) (ta) (dhj)> on Wednesday August 13, 2008 @03:17PM (#24588313)

    They can just enter "man bash" on the command line

  • I still miss the directory history (Ctrl-PageUp/Dn) from 4NT. I see one person does too and came up with solution [linuxgazette.net]

  • by Joe Snipe ( 224958 ) on Wednesday August 13, 2008 @03:26PM (#24588495) Homepage Journal
    If you are new to linux and are thinking about learning BASH, you need to be aware that in Ubuntu linux /bin/sh points to DASH, NOT BASH. Not alot of difference, but it can screw you up if you are not aware of it. You know I'm not trying to troll here, but I really felt this change was poorly implemented and announced. I hope it doesn't deter any newbies from probing deeper into their systems and learning the joys of scripting.
  • by HighOrbit ( 631451 ) on Wednesday August 13, 2008 @03:43PM (#24588791)
    The review says, "They also use the POSIX standard, so that all of the examples are portable across platforms."

    So if the book and examples limit themselves to the POSIX subset of bash's capabilities and don't go into the GNU extensions, is the book really about "bash"? It sounds like the book could be called "UNIX shell cookbook" (oops already done) or "Ksh Cookbook" just as much as "Bash Cookbook". But of course, bash is the Linux default and Linux is hot while Unix is passe.

    I always thought it was the gnu extensions above and beyond POSIX (while staying backwards capatable with POSIX) that make the gnu tools like bash and gawk so much (allegedly) better than ksh and awk.

    BTW, I use bash because it is the default on most linux systems so I am familiar with it. Bash is the very first thing I install on BSD or Solaris systems and then I set it as my login shell. It's actually really rare that I need to call on the gnu extensions, so I could probably be happy with pdksh just as well.
  • by Just Some Guy ( 3352 ) <kirk+slashdot@strauser.com> on Wednesday August 13, 2008 @04:11PM (#24589181) Homepage Journal

    I loved Bash (and was the maintained of the FreeBSD port of the Bash tab-completion for a while), but gave it up forever about a week after I tried Zsh [zsh.org]. For me, it's like "Bash done right", from associative arrays for easy scripting to tab-completion that's fast and doesn't pollute the namespace with thousands of tiny functions:

    $ zsh
    $ set | wc -l
    167
    $ bash
    $ set | wc -l
    7221

    Which leads me to ask: has anyone tried Zsh but then gone back to Bash? If so, why?

I tell them to turn to the study of mathematics, for it is only there that they might escape the lusts of the flesh. -- Thomas Mann, "The Magic Mountain"

Working...