or
Sign in to turn on 1-Click ordering
Sell Us Your Item
For a $0.83 Gift Card
Trade in
More Buying Choices
Have one to sell? Sell yours here
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
Sorry, this item is not available in
Image not available for
Color:
Image not available

To view this video download Flash Player

 

Minimal Perl: For UNIX and Linux People [Paperback]

Tim Maher
4.5 out of 5 stars  See all reviews (14 customer reviews)

List Price: $44.95
Price: $35.06 & FREE Shipping. Details
You Save: $9.89 (22%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Only 4 left in stock (more on the way).
Ships from and sold by Amazon.com. Gift-wrap available.
Want it tomorrow, May 23? Choose One-Day Shipping at checkout. Details
Shop the new tech.book(store)
New! Introducing the tech.book(store), a hub for Software Developers and Architects, Networking Administrators, TPMs, and other technology professionals to find highly-rated and highly-relevant career resources. Shop books on programming and big data, or read this week's blog posts by authors and thought-leaders in the tech industry. > Shop now

Book Description

October 1, 2006
A guide to a carefully designed subset of the Perl language, this book makes Perl more accessible to those having UNIX/Linux skill levels ranging from elementary to expert by capitalizing on their existing knowledge of important utilities (grep, awk), or essential concepts (filters, command substitution, looping). Dozens of detailed programming examples are shown, drawn from contemporary application areas such as system administration, networking, Web development, databases, finance, HTML, CGI, and text analysis. Broken into two parts, the first is for all who are familiar with core UNIX/Linux commands such as grep and caters to readers ranging from managers and administrative staff to advanced programmers. The second part is for developers experienced in Bourne, Korn, Bash, or POSIX Shell programming and makes Perl scripting easy to learn by showing Shell examples along with their Perl counterparts. Many Perl modules are covered including freely available pre-written code from the CPAN.

Frequently Bought Together

Minimal Perl: For UNIX and Linux People + Automating System Administration with Perl: Tools to Make You More Efficient + Learning Perl
Price for all three: $83.89

Buy the selected items together

Customers Who Bought This Item Also Bought


Editorial Reviews

About the Author

Tim Maher has worked for U.C. Berkeley as a senior programmer/analyst, for the University of Utah as a professor of computer science, and for AT&T, DEC, Sun Microsystems, Hewlett Packard, and Consultix as a course developer and/or lecturer on operating systems and programming languages. He founded Seattle's SPUG, one of the oldest, largest, and most active Perl users groups and served as its leader for its first six years. He serves on the Advisory Board of the University of Washington that oversees its Perl Certificate Program, and has led discussions in the Perl community about the development of a certification process for Perl programmers. He lives in Seattle, Washington.

Product Details

  • Paperback: 450 pages
  • Publisher: Manning Publications (October 1, 2006)
  • Language: English
  • ISBN-10: 1932394508
  • ISBN-13: 978-1932394504
  • Product Dimensions: 7.4 x 1.1 x 9.2 inches
  • Shipping Weight: 1.8 pounds (View shipping rates and policies)
  • Average Customer Review: 4.5 out of 5 stars  See all reviews (14 customer reviews)
  • Amazon Best Sellers Rank: #984,546 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

Customer Reviews

4.5 out of 5 stars
(14)
4.5 out of 5 stars
The book is also well written and enjoyable. Zubin Madon  |  8 reviewers made a similar statement
I have enough background in PERL now to start using the Camel book 'Learning PERL.' farrukhy  |  2 reviewers made a similar statement
Most Helpful Customer Reviews
17 of 17 people found the following review helpful
4.0 out of 5 stars Great Unix Data Wrangling Cookbook and Reference October 22, 2006
Format:Paperback
Minimal Perl concerns itself with Perl one liners and quick scripts used to find, alter, and display data on Unix systems. The many examples show how Perl can both work with and exceed the existing Unix tools, and show a wide range of tasks: log scanning, finding and replacing data in multiple files, calculations to prove Seattle receives less rain than New York, and more. I consider myself adept on the Unix command line, though learned several new commands and best practices from this text.

The text includes many helpful tables. These illustrate Perl features and syntax, often in comparison to the Unix utilities grep, sed, and awk. The comparison tables also detail the different flavors of these utilities (classic, POSIX, and GNU). The text discusses commands used in the 1970s, and how the utilities have improved with the introduction of awk, Perl, and the GNU tools, which in turn borrow features from Perl. Other tables show problem solving commands, illustrating how different problems would be solved with grep, sed, awk, or Perl.

Recommended to those who do or want to spend time wrangling data on Unix. The text assumes a fair amount of Unix knowledge. If weak on Unix, first read "Learning the bash Shell" to learn a Unix shell. The second part of Minimal Perl covers Perl programming, which may obviate the need for "Learning Perl" or similar introductory Perl text.
Comment | 
Was this review helpful to you?
19 of 20 people found the following review helpful
5.0 out of 5 stars Good as more than just a Perl introduction February 5, 2007
Format:Paperback
This book is being promoted as a Perl introduction for those who are already familiar with other popular shell tools such as grep, sed, and awk. I can't vouch for how useful it is in that context, although the quality of material and delivery style probably make it a good resource.

I came at the book from a different angle. Perl is familiar, but the other shell tools aren't. I started exploring Linux and UNIX when the GUI shells were starting to become useful in their own right and find/grep/sed/awk didn't seem as important. Perl has largely been an application programming language for me, so I never learned more than the barest hint of its scripting power. There is a huge "shell scripting tool" shaped hole in my Perl and UNIX knowledge.

"Minimal Perl" has been rapidly filling that gap. Even the first 20 pages were enlightening - they showed information on some of the more useful command-line options to Perl along with plentiful examples. Remember that for the last nine years "perl" eq "application language" in my head. The only command line options I cared about were -w and -T, and I stopped caring about -w when 5.6 was released. My new understanding of -l, -n, and -p meant that I could suddenly whip out a quick one-liner for a simple task, rather than write too many lines of C-style code for the same job.

I have been bouncing through the book as I find one of my needs matched by a chapter subject, but the rest of the book has been more of the same. You practice using Perl in combination with other shell tools and then as a complete replacement for those tools. The concepts from this book have saved my [...] a few times already, as I was able to combine them with my existing knowledge of Perl to find and fix code issues quickly.

The writing style is enjoyable. "Minimal Perl" is written in a relaxed, light-hearted manner which still manages to convey thoughts very clearly. You will learn a lot about the differences between Perl and the shell tools, even if you weren't that familiar with the shell tools in the first place. You will learn about the author's almost unhealthy love of AWK before he discovered Perl. More importantly, you'll learn how to use Perl as more than an awkward replacement for C++.

The physical layout of the book is first-rate, which I have come to expect from Manning. The font is large and readable. The book is printed on good thick paper, which matters more than I would have thought. The tables and code samples are easy to find, although I would have appreciated a table listing in the table of contents. After double-checking through this book while writing the review, that's the only complaint I was able to come up with: a table listing would be nice. [...]

I recommend this book to anyone who knows Perl but hasn't used it to do any dirty work in the shell. This will have an impact on when and how you use Perl.
Was this review helpful to you?
16 of 17 people found the following review helpful
5.0 out of 5 stars Well Worth The Time And Money April 24, 2007
Format:Paperback
Like some others, I abandoned Perl years ago, in part because I objected to its lack of object orientation.

This book has brought be back, but only for certain purposes. The author shows how one-line Perl commands can perform tasks for which one might otherwise use sed or grep. In many cases the Perl command includes additional features not always found in the equivalent Unix command.

I have found this book invaluable in helping me to automate maintenance tasks on my website.

Yes, Perl 6 (object oriented Perl running in a virtual machines) is five or six years late, but when you are writing one-liners you don't need objects anyway.

Perhaps the world has gone overboard on this object-oriented thing. If you are like me and had abandoned Perl consider returning to it for certain tasks with the aid of Minimal Perl.
Comment | 
Was this review helpful to you?
Most Recent Customer Reviews
5.0 out of 5 stars Practical, useable, and it doesn't even say "for dummies"
One thing goes without question - Mr. Maher knows his Perl. In this book he takes the most practical pieces of the language and shows you how to use them. Read more
Published on October 17, 2010 by Ruth Boaz
4.0 out of 5 stars Title a little misleading
This is an excellent work in how to harness PERL to better use the Linux/ Unix shell and command line. Read more
Published on June 5, 2009 by Bruce Coryell
3.0 out of 5 stars Command Line Perl
Minimal Perl focuses on translating UNIX/Linux shell commands to Perl (awk, sed, grep, and the like). Read more
Published on February 24, 2008 by A. Burbank
5.0 out of 5 stars Great Perl Tutorial for Experienced UNIX/Linux Users
This is an excellent Perl tutorial for those who are already familiar with UNIX/Linux shell scripting and other common utilities like find, sed, grep, and awk. Read more
Published on January 18, 2008 by Paul M. Dubuc
4.0 out of 5 stars If you are a Sys Admin
If you are an experienced Sys Admin in the Unix world and need to know enough Perl for scripting, this book is good - but its not a beginners book- the author expects you be... Read more
Published on October 20, 2007 by H. W. Lindsey
5.0 out of 5 stars The unix way, perl style
The cw tells you to not to use perl when traditional commands will do, but this book tosses that aside. It thoroughly covers several use cases where perl really does a better job. Read more
Published on September 13, 2007 by Zubin Madon
5.0 out of 5 stars Very Effective and Potent
One thing I really loved about this book is that it is short and sweet, well written, clear. It covers extremely popular functionality (text search, text manipulation,... Read more
Published on July 2, 2007 by Joaquin Menchaca
4.0 out of 5 stars A good Perl book for sysadmins.
The book is an enjoyable read and contains many funny examples. Although a bit basic or "minimal" (especially anyone who has used -e), "Minimal Perl" is overall a good book. Read more
Published on May 30, 2007 by R. Chae
4.0 out of 5 stars great book if i ever receive it
Great book...if I ever receive it. Buy this from a reseller, Amazon's inventory system is completely out of whack.
Published on March 1, 2007 by R. Slead
5.0 out of 5 stars Simply the best PERL book I have read
I've been trying to learn PERL for a while now. However, time and complications led to me holding off on learning PERL. Read more
Published on January 18, 2007 by farrukhy
Search Customer Reviews
Only search this product's reviews


Books on Related Topics (learn more)

What Other Items Do Customers Buy After Viewing This Item?


Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Forums

Topic From this Discussion
MinimalPerl.com has more information about this book
The MinimalPerl.com site is offline. You can see a recent version of its content at http://web.archive.org/web/20111105085029/http://minimalperl.com.
Apr 3, 2013 by Timothy F. Maher |  See all 3 posts
Have something you'd like to share about this product?
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Search Customer Discussions
Search all Amazon discussions

Listmania!


So You'd Like to...


Create a guide


Look for Similar Items by Category