Customer Reviews


15 Reviews
5 star:
 (11)
4 star:
 (3)
3 star:
 (1)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


14 of 14 people found the following review helpful:
5.0 out of 5 stars The best book on unix shell programming I've read.
I've used this book both as a beginner to unix and as a unix system programmer 10 years later. I would not do shell programming without it and an appropriate O'Reilly 'Unix in a nutshell' book. It is designed to be read end to end, introducing new topics bit by bit and expanding on them using numerous excellent examples which grow in complexity as the book...
Published on July 23, 1999

versus
3 of 11 people found the following review helpful:
3.0 out of 5 stars It's only good for beginner of c shell programming
It's only good for beginner of c shell programmin
Published on November 6, 1999


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

14 of 14 people found the following review helpful:
5.0 out of 5 stars The best book on unix shell programming I've read., July 23, 1999
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
I've used this book both as a beginner to unix and as a unix system programmer 10 years later. I would not do shell programming without it and an appropriate O'Reilly 'Unix in a nutshell' book. It is designed to be read end to end, introducing new topics bit by bit and expanding on them using numerous excellent examples which grow in complexity as the book progresses. This does give rise to my one complaint which is that while it is filled with useful tables and charts detailing various command options, etc., it can be difficult to find a particular table using the index since topics are spread throughout the book. Desipite this minor agravation, this book is in my list of 'top 10' must have unix programming books.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


10 of 10 people found the following review helpful:
5.0 out of 5 stars The definitive guide to the C Shell, April 18, 2006
This review is from: The Unix C Shell Field Guide (Paperback)
The C shell (csh) is a Unix shell developed by Bill Joy for the BSD Unix system. It was originally derived from the 6th Edition Unix /bin/sh, the predecessor of the Bourne shell. Its syntax is modeled after the C programming language. The C shell added many feature improvements over the Bourne shell, such as aliases and command history. Today, the C shell is not widely used because it has been superceded by other shells such as the Tenex C shell (tcsh), the Korn shell (ksh), and the GNU Bourne-Again shell (bash). The C shell's scripting capability came under criticism in the early-to-mid 1990s for its ambiguity, especially with respect to quoting and redirection.
An example of possibly unwelcome behavior of csh scripts is the following:
if ( ! -e foo ) echo bar > foo
It would appear to say "if file 'foo' does not exist, create it with contents 'bar'". But it will in fact create an empty file, as the line is parsed such that the output redirect is set up before the file existence is tested. However, if you are a big fan of the C Shell or legacy code has forced you to deal with it, this is the definitive guide to it, even if it is 20 years old. The book is organized as follows:
Chapters 1 and 2 introduce the shell. Chapter 1 discusses what it is, what it does, and how you use it. Chapter 2 gives a brief tour of the shell with a sample terminal session.
Chapters 3 through 6 present the C Shell as an interactive command language. Chapter 3 presents the C shell's basic command forms. Chapter 4 shows the C shell's power - its command shorthand. Chapter 5 shows how to juggle your commands using job control. Chapter 6 covers the history and alias mechanisms, which are the C shell's original claims to fame.
Chapters 7 and 8 present the shell as a programming language. Chapter 7 covers the basic language forms and Chapter 8 discusses more advanced techniques. Both chapters contain plenty of example scripts.
Chapter 9 shows how to customize the C shell to accommodate your terminal type, working habits, login/logout procedures, and custom commands.
Chapter 10 explains how the C shell works and how it interfaces to the UNIX system. Included are plenty of diagrams to illustrate just how the C shell executes commands.
Finally, chapter 11 is a collection of C shell scripts that illustrate a particular technique, perform an interesting task, or solve a problem. Most are actual scripts in use on production UNIX systems at the time this book was printed.
This book should be on the shelf of anyone who must work with the C shell on a regular basis.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 4 people found the following review helpful:
5.0 out of 5 stars If you like lots of excellent examples, this is your book, January 17, 1999
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
This is the best C shell book that I have ever come across. Lots of excellent examples and very thorough. This book has been in print since 1986 and there's good reason for it's longevity.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 7 people found the following review helpful:
5.0 out of 5 stars Excellent C Shell Book, September 5, 1999
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
This book has a nice layout. The first ten pages include a reference for several unix commands which are the foundation for solid scripts. The rest of the book has nice examples that are well written. You create basic scripts that are enhanced as you learn more material. You need to change the first line to !#/bin/csh to run the scripts. I wish the author's would create a newer edition of this book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 3 people found the following review helpful:
4.0 out of 5 stars Great book on C shell scripting., April 26, 1999
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
For the most part this book was very easy to read and follow. Anyone new to UNIX and the C shell would find this a good tutorial. The chapter on quoting and escaping meta characters was the most difficult to grasp, however that is more the fault of the C shell itself. However, the authors give numerous examples to help the reader understand the more difficult concepts.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
5.0 out of 5 stars Indispensable if you are starting out., February 10, 2007
By 
Bruno (San Jose, CA) - See all my reviews
This review is from: The Unix C Shell Field Guide (Paperback)
When I first started writing shell scripts, I found myself referring to this book constantly - and I do mean CONSTANTLY. Simple straightforward explanations and lots of examples.

I had 2-3 other books that all wound up gathering dust while this one just kept getting thumbed through.

I wrote all kinds of software for over thirty years on everything from embedded microprocessors to giant number crunchers.

This was one of the most helpful books I ever used in any of those milieus.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 4 people found the following review helpful:
5.0 out of 5 stars Best beginners' Unix and C Shell guide, September 17, 1998
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
If you are new to Unix, this book has everything you need to know and answers more of your questions than other books. It's incomplete in the sense that after reading this book, you just think you are ready to know more.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 4 people found the following review helpful:
5.0 out of 5 stars Best C Shell book available. No mistakes like other books., June 30, 1998
By A Customer
This review is from: The Unix C Shell Field Guide (Paperback)
Most comprehensive C shell book. Examples are not too long but there are a sufficent number of applicable examples. Most importantly, the there are few if any errors.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5.0 out of 5 stars Would like to see another edition, August 2, 2010
By 
Amazon Verified Purchase(What's this?)
This review is from: The Unix C Shell Field Guide (Paperback)
For some reason it's hard to find a good C-shell tutorial on the web. This book fills the void. It's both a decent tutorial and a comprehensive reference.
The book deserves another edition to include the latest updates.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4.0 out of 5 stars Be literate; know your c shell (csh), February 4, 2010
I used this book to learn more than just the fundamentals of C shell programming. Some time it is more efficient to switch to or supplement with the C shell and save many borne shell steps to accomplish the same process. The C shell environment is robust. What the C shell is not is intuitive. Therefore, you need this book for any serious scripting. One example of the usefulness of the book is the use of the "here" document. Here documents can be found in other shells also but if you want to know how to use this function and take in literal information without substitution then you will need to read this book.

This is also the basis of tcsh
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

This product

The Unix C Shell Field Guide
The Unix C Shell Field Guide by Gail Anderson (Paperback - Jan. 1986)
Used & New from: $0.01
Add to wishlist See buying options