IDNetters Forums

Technical News & Discussion => Apple News & Discussion => Topic started by: Steve on Jun 01, 2010, 12:36:47

Title: The Bash Shell
Post by: Steve on Jun 01, 2010, 12:36:47
Its one of those google books, a good reference guide for learning some shell commands etc


here (http://books.google.co.uk/books?id=WQCSxv9vfPkC&printsec=frontcover&dq=Learning+the+bash+Shell,+Third+Edition+Unix+Shell+Programming&source=bl&ots=OiW8hY741O&sig=90UsSreWCsL3MoBuiK6eDpmvDhI&hl=en&ei=1u8ETKGrNtmH4gav-PjLDg&sa=X&oi=book_result&ct=result&resnum=4&ved=0CCoQ6AEwAw#v=onepage&q=Learning%20the%20bash%20Shell%2C%20Third%20Edition%20Unix%20Shell%20Programming&f=false)
Title: Re: The Bash Shell
Post by: Rik on Jun 01, 2010, 12:39:20
Out of curiosity, who uses which shell amongst us?
Title: Re: The Bash Shell
Post by: Glenn on Jun 01, 2010, 12:59:40
Clams
Title: Re: The Bash Shell
Post by: Rik on Jun 01, 2010, 13:00:43
Chowder or bake? ;D
Title: Re: The Bash Shell
Post by: Glenn on Jun 01, 2010, 13:01:06
 ;D
Title: Re: The Bash Shell
Post by: Steve on Jun 01, 2010, 13:05:03
I think most of mine is bash unless I put an sh in front 
Title: Re: The Bash Shell
Post by: Rik on Jun 01, 2010, 13:06:21
 ;D
Title: Re: The Bash Shell
Post by: gizmo71 on Jun 01, 2010, 13:11:29
I sometimes do ksh at work, or zsh where I can get away with it.
Title: Re: The Bash Shell
Post by: esh on Jun 01, 2010, 13:29:57
bash, anything else is asking for trouble when you are using external scripts in my experience, though a lot of folks around me are a little old-fashioned and use csh/tcsh... someone here has a 6,000 line csh script. It is a monster.
Title: Re: The Bash Shell
Post by: nowster on Jun 01, 2010, 14:52:46
bash in normal usage. sh (dash) for my packages.
Title: Re: The Bash Shell
Post by: Rik on Jun 01, 2010, 15:00:12
Why the difference?
Title: Re: The Bash Shell
Post by: john on Jun 01, 2010, 18:26:15
Before we migrated to PC's I used the C-shell extensively on Sun's but I also sometimes used the Bourne shell and ocassionally the Korn shell.
Title: Re: The Bash Shell
Post by: nowster on Jun 02, 2010, 03:43:45
Quote from: Rik on Jun 01, 2010, 15:00:12
Why the difference?

Between bash and dash?

# ls -l /bin/[bd]ash
-rwxr-xr-x 1 root root 811156 Apr 10 13:03 /bin/bash
-rwxr-xr-x 1 root root  84144 May 27 00:08 /bin/dash

Most helpful for those with lower memory available (eg. embedded systems).
Title: Re: The Bash Shell
Post by: Rik on Jun 02, 2010, 10:10:39
Er, yes. ;)