Difference between revisions of "Bash"

From Bashlinux
Jump to: navigation, search
(talk)
Line 2: Line 2:
 
= Bash =
 
= Bash =
   
  +
== How to write portabile scripts ==
== Portability ==
 
 
As recommended by Dan Kegel on [[http://code.google.com/p/winezeug/source/browse/trunk/wisotool|wisotool]] a good book for portability is [[http://www.amazon.com/Portable-Shell-Programming-Extensive-Collection/dp/0134514947/ref=sr_1_1?s=books&ie=UTF8&qid=1287290019&sr=1-1|Portable Shell Programming]] by Bruce Blinn, which explains how to avoid GNU extensions in order to run bash scripts even on Mac OS X and Solaris.
 
As recommended by Dan Kegel on [[http://code.google.com/p/winezeug/source/browse/trunk/wisotool|wisotool]] a good book for portability is [[http://www.amazon.com/Portable-Shell-Programming-Extensive-Collection/dp/0134514947/ref=sr_1_1?s=books&ie=UTF8&qid=1287290019&sr=1-1|Portable Shell Programming]] by Bruce Blinn, which explains how to avoid GNU extensions in order to run bash scripts even on Mac OS X and Solaris.
   

Revision as of 15:12, 4 June 2012

Bash

How to write portabile scripts

As recommended by Dan Kegel on [[1]] a good book for portability is [Shell Programming] by Bruce Blinn, which explains how to avoid GNU extensions in order to run bash scripts even on Mac OS X and Solaris.

Other he also recommends is [Single UNIX Specification].