Linux in a Nutshell, 4th Edition by Ellen Siever, Stephen Figgins, Aaron Weber This errata page lists errors outstanding in the most recent printing. If you have technical questions or error reports, you can send them to booktech@oreilly.com. Please specify the printing date of your copy. This page was updated November 16, 2004. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification Confirmed errors: (2), 2nd paragraph from bottom; it says "...and the University of Berkeley started distributing....". it should be: "...and the University of California, Berkeley started distributing..."" [208]; missing "-t" switch to apply commands to tables other than filter. [731] in Examples for command "s"; # Change third and fourth quote to ( and ): /function/{ s/"/(/3 s/"/)/4 } Actually, this command will change third and _FIFTH_ quote to ( and ), because after s/"/(/3 is executed, the quote that was number 4 becomes quote number 3, and the quote number 5 becomes quote number 4. Therefore, the correct script would be: # Change third and fourth quote to ( and ): /function/{ s/"/(/3 s/"/)/3 } 734, intro: Change Effective gawk Programming to Effective Awk Programming 751, under $Id$ item: Change the long bold text with simply: $Header$