Customer Reviews


8 Reviews
5 star:
 (3)
4 star:
 (2)
3 star:
 (3)
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


4 of 4 people found the following review helpful:
4.0 out of 5 stars Very good for beginners...however
About a year ago I asked my uncle who work at SUN, if he had a good book on shell programming. He lent me a book about the Bash shell from O'Reilly. I was devastated! I felt so dumb reading that book! They begun with a simple script, namely the famous "Hello world", which everyone starts with reagrdless of language. And after that they began with big scripts,...
Published on September 9, 2001 by M. Dahlberg

versus
8 of 8 people found the following review helpful:
3.0 out of 5 stars Helpful but far too many typos and/or errors
This book was one of my first intros to Bash programming. It made it interesting, but far too many of the script samples didn't work, due to typographical errors. (Such as some of the while loops in chapter 10) It took a bit of researching to figure out why, however, researching the errors was also helpful. (As I am still a rank novice at bash scripting, there might...
Published on November 25, 2001 by Scott Robbins


Most Helpful First | Newest First

8 of 8 people found the following review helpful:
3.0 out of 5 stars Helpful but far too many typos and/or errors, November 25, 2001
Amazon Verified Purchase(What's this?)
This review is from: LINUX Programming for Dummies (Paperback)
This book was one of my first intros to Bash programming. It made it interesting, but far too many of the script samples didn't work, due to typographical errors. (Such as some of the while loops in chapter 10) It took a bit of researching to figure out why, however, researching the errors was also helpful. (As I am still a rank novice at bash scripting, there might have been other, easier ways to fix them, but for example, the timing loop didn't work until I changed $counter=$counter+1 to counter=$counter+1)
The book is quick reading and a reasonable introduction to bash programming, with the caveat that the reader will probably have to know how to research deja, linuxdoc.org or other places to figure out why some of the scripts don't work as printed.

I notice that some other reviewers pointed out errors to IDG. It would be nice if they had an easy to find page listing such errors, ala Sybex's site. There may be one, but when it's not easy to find, I just went to the various linuxdoc.org howtos and guides and found my answers there.

My only other complaint is a petty one, that sometimes the author could have pointed out alternate syntax that also works. However, as we all develop our own coding habits, that is a fairly meaningless complaint.

All in all, I would recommend the book to the novice bash scripter, as long as the novice is ready to, at times, search the web a bit to find out why some scripts don't work properly. The trouble is that since the book is aimed towards the novice, scripts that don't work properly due to minor typos might be frustrating at first. Still, this is good practice--for example, after awhile, I could look at one and say, aha, this won't work, he left out a "do". It's an excellent supplement to the online guides at linuxdoc.org and reasonably priced.

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


10 of 12 people found the following review helpful:
3.0 out of 5 stars Why This Book is Disappointing, February 7, 2002
By 
Sean E Parsons (Pittsburgh, PA United States) - See all my reviews
This review is from: LINUX Programming for Dummies (Paperback)
Granted, most of this book is written on a low enough level that most people could understand it--it made inappropriate assertions and neglected essential information while providing its lessons. It spends much of the early chapters making Microsoft Windows sound like the ideal programming environment while neglecting to mention all the problems of trying to function with thier API's while working with the win32 drive. Excluding using their ".NET Framework" I would never suggest that anyone even try to program using Windows (unless your being paid to do so). Also, Mr. Keogh continuously mentions that Linux does not have all the bells & whistles available to Windows (although, on several occasions he mentions Motifs). I would hope that the average individual looking at this book would simply be loking at this book as a starting place. Hopefully the individual reading this book will move onto other languages (i.e., C, C++, etc.) which would provide the "bells & whistles".

Also, this book left out simple instructions. When working in "vi" --a simple text editor-- Mr. Keogh mentions various ways to exit "vi", but neglects to explain that you must first hit the escape key to get to the command line to exit "vi".

I would recommend that individuals looking to learn how to program using a Linux OS start with other books that start off very simply with Linux shell scripts.

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:
4.0 out of 5 stars Very good for beginners...however, September 9, 2001
By 
M. Dahlberg (Stockholm Sweden) - See all my reviews
(REAL NAME)   
This review is from: LINUX Programming for Dummies (Paperback)
About a year ago I asked my uncle who work at SUN, if he had a good book on shell programming. He lent me a book about the Bash shell from O'Reilly. I was devastated! I felt so dumb reading that book! They begun with a simple script, namely the famous "Hello world", which everyone starts with reagrdless of language. And after that they began with big scripts, with pages of code.
I felt so stupid, and thought I will never learn this!

Now recently I decided to make another try, but with a new book. My eyes fell on "Linux Programming for dummies"
This is a very good book for beginners, because it explains everything from the bottom! (Which is something you can't say about the O'Reilly books!)
However a word of warning. This book (at least in my edition) contained a number of errors. It could display one thing in the beginning of the book, and then another in the end thus contradicting it self. One good example is this: it says that "true" in shell scripts is 1.

Then you can imagine my suprise when I asked such a simple question to the shell as "is 100+100=200?"
The shell replied 0. What? Has the computer gone stupid I thought?
As it turned out, after searching the net and looking through a number of other books, 0 is true and 1 is false. (This is the opposite to C and Perl programming where 1 is true and 0 is false!!!!)

I showed this error and more to the "Dummy company" *hehe*, which in return gave me a book for free! (Red Hat Linux Bible)
I have since that found about fifteen more errors. But don't let that discourage you! You will easily spot them, unless they've corrected this in another issue!

For example they forget to include "do" in for-loops and they fail to end case-statements with "esac". Don't worry, you'll understand once you read the book.

I truly recommend this book, and it should be everyones firstbuy!

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:
5.0 out of 5 stars I was surprised with what I can do with shell programming, February 8, 2001
By A Customer
This review is from: LINUX Programming for Dummies (Paperback)
I learned that you really don't need to get involved in a programming language such as c and c++ to develop worthwhile applications in Linux. Linux is filled with utilities that do the grunt work of a typical c and c++ program that I've written. This book showed me how to take advantage of these utilities and link them together into a solid application. I also found the shell programming conversion chart in the book a big help because this lets me convert programs written in bash shell into the other popular shells used in Linux.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 8 people found the following review helpful:
3.0 out of 5 stars Covers SHELL programming, February 1, 2001
By 
Gregorio "gtada" (Pasadena, CA United States) - See all my reviews
This review is from: LINUX Programming for Dummies (Paperback)
A more appropriate title for this book would be "BASH Programming for Dummies". I was expecting a book that covers basic C or C++ programming on the Linux platform, but instead I got a book on writing shell scripts. Oh well, that's what I get for impulse buying.
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 Best Way To Get Started Programming Linux, November 13, 2000
By 
Clark Riippa (New York, New York United States) - See all my reviews
This review is from: LINUX Programming for Dummies (Paperback)
I've programmed for years in other languages and had to quickly get up to speed programming Linux. I read a few other books on the topic, but found this one to get me to where I needed to be and fast. I highly recommend this book to anyone learning to program Linux.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 3 people found the following review helpful:
5.0 out of 5 stars Put This High On Your List, November 14, 2000
By 
Clark Riippa (New York, New York United States) - See all my reviews
This review is from: LINUX Programming for Dummies (Paperback)
I'm glad the Dummies folks finally came out with a Linux programming book. The book was well worth the wait. I recommend buying this book if you want to take control of Linux. This book is true to the Dummies style and walks you through the steps needed to creating your own Linux program. I found the part showing you how to write your own mass mailing program a fabulous insight. Place this one on your wish list.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4.0 out of 5 stars linux programming for dummies, September 23, 2005
This review is from: LINUX Programming for Dummies (Paperback)
the book is simple in language and therefore very easy to understand, especially for the very beginner.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


Most Helpful First | Newest First

This product

LINUX Programming for Dummies
LINUX Programming for Dummies by James Edward Keogh (Paperback - January 15, 2000)
$29.99 $22.19
In Stock
Add to cart Add to wishlist