|
From: Jan S. <ha...@st...> - 2013-01-29 15:36:03
|
On Jan 29 09:00:16, jr...@co... wrote: > Scripting is certainly a fantastic skill, and opens many doors! For > scripting on OS X, I'd recommend "man bash" rather than "man sh", as the > default shell on this platform is bash. > > In addition, googling something like "bash tutorial" would likely give you > some more user-friendly resources than the man page. scripting 101: use plain sh in your scripts, not bash, so that your scripts are portable to other UNIX systems, some of which do not even have bash; sh is everywhere, and is almost the same everywhere. |