Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
Unix Operating Systems Software Windows Books Media Book Reviews Linux

From Bash To Z Shell 214

r3lody (Raymond Lodato) writes "Novice users and power users of *nix will enjoy reading From Bash to Z Shell: Conquering the Command line by Oliver Kiddle, Jerry Peek, and Peter Stephenson. In this moderate-sized book from Apress, the authors delve into both bash (the Bourne Again Shell) and zsh (Z Shell) to enable you to use them to their fullest advantage. Topics range from the simple editing of the command line to redefining key sequences, down into creating functions for editing and command-line completion. Some areas are covered in other books, but this one goes into some little-seen side streets and alleyways to show you the shortcuts to more efficient use of the shell." Read on for the rest of Lodato's review.
From Bash to Z Shell: Conquering the Command Line
author Oliver Kiddle, Jerry Peek, and Peter Stephenson
pages 472
publisher Apress
rating 9
reviewer Raymond Lodato (rlodato AT yahoo DOT com)
ISBN 1590593766
summary An in-depth look at the functionality of bash and zsh.

A *nix-style shell is available on a number of platforms, so the authors chose not to limit themselves to just one, such as Linux. The techniques they discuss can be used in Unix, as well as under Windows using cygwin.

In case you're not overly well-versed in shell handling, the first part of the book does a pretty good job covering all of the things a typical user might want to do. Basic command editing, I/O redirection, jobs, processes, and some simple scripting are all covered. For many users, this is also as far as they would like to go. However, reading a little further yields treasure.

The next part delves into bash version 3.0 and zsh version 4.2, both freely available on the Internet. In addition to more sophisticated command line editing techniques, the authors also delve into the misty realms of re-binding keys. A great many users find themselves typing the same sequences over and over again. While sometimes a script makes sense to encapsulate these sequences, sometimes you want to simply enter some text and that's where a key binding makes sense. One example given in the book for zsh is bindkey -s '\C-xt' 'March 2004\eb' . After the binding, typing CTRL-x t puts the string 'March 2004' onto the command line, and moves the cursor under the '2' so you can insert the day of the month. That's a very simple example for a very powerful facility. A good chunk of chapter 4 is spent on showing how to make the most of bindkey (or its bash cousin 'bind').

The next few chapters cover common topics of prompt strings, file/directory globbing, and shell history. Then, significant press is given to the subject of pattern matching. Many people understand basic pattern matching and regular expressions, but From Bash to Z Shell goes into careful detail, with many examples from both bash and zsh, to contrast the (minor) differences between these two powerful shells. The next chapter discusses command line and file/directory name completion, a topic usually glossed over in other texts. Finally, job processing wraps up Part 2.

The third and final part of the book deals with extending the shell using variables, scripts, and functions. Here's where we get into the nitty-gritty. The first two chapters go over familiar territory: shell variables and shell programming. The chapter on programming is easy to follow, and I suggest you try the examples as you go to get the most out of it. The last two chapters focus on topics frequently overlooked: editor functions, and completion functions. Editor functions allow you (with bind[key]) to define new capabilities to use while editing the command line. This is where a true power user can shine, creating a suite of new functions to speed his/her use of zsh or bash. Completion functions work in defining new ways for the shell to complete a command, file name, or directory, based on a user-written function. Honestly, it's not something I would tend to use, but the capability is intriguing.

All in all, From Bash to Z Shell provides a frequent shell user with a plethora of new insights into customizing the bash and zsh shell programs to fit his/her tastes. The authors have filled a void in tackling the subject of customizing the shell rather than just simply using it. I would have liked to see more coverage of some of the more standard uses of the shells, just so the book could be a more complete reference, rather than the specialized one it is. Specialized or not, there is a lot offered here, and you couldn't go wrong getting this book.


You can purchase From Bash to Z Shell: Conquering the Command Line from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
This discussion has been archived. No new comments can be posted.

From Bash To Z Shell

Comments Filter:
  • by AKAImBatman ( 238306 ) * <akaimbatman@gmaYEATSil.com minus poet> on Wednesday April 13, 2005 @05:09PM (#12227543) Homepage Journal
    Did anyone ever actually argue over ZShell? I thought the primary arguments were always the BASH vs. KSH arguments (i.e. general users vs. hardcore unix admins) and the TCSH vs. BASH arguments (there is *some* validity to TCSH being a bit more professional, but BASH is just more useful).
  • by Anonymous Coward on Wednesday April 13, 2005 @05:13PM (#12227581)
    More recent zsh praise [blog.sejo.be] from Jochen Maes (Gentoo developer).
  • W00t! Finally! (Score:5, Interesting)

    by lpangelrob2 ( 721920 ) on Wednesday April 13, 2005 @05:14PM (#12227593) Journal
    A book I might just buy after reading about it on Slashdot.

    I like the Advanced Bash Scripting Guide [tldp.org] quite a bit, but I'd also like to learn about other shells, without reading through a mountain of manpages, nor reading through webpages, and just for general interest while riding the El (not because "I need to do x!").

  • Why I love zsh (Score:5, Interesting)

    by winkydink ( 650484 ) * <sv.dude@gmail.com> on Wednesday April 13, 2005 @05:24PM (#12227688) Homepage Journal
    Back in '91 or so, I lost legitamate source-code access to ksh. bash was around but, at the time, it only had emacs-like command-line editing. I then discovered that a bunch of folks in the CS dept at Princeton were developing a new (to me anyway) metashell called zsh that was, for the most part a ksh workalike with vi-like command-line editing.

    One thing I have never been able to do successfully is to emulate the old ksh's ability to hit Esc-Esc on the command line and get popped into vi with the last command in the history file ready to be edited. It was such a boon to rapid development of shell scripts. Then again, I don't do as much shell scripting these days, so its probably no great loss.

    If anybody knows how to do this, esc-esc thing in zsh and can tell me, I'd be really grateful.
  • by pilgrim23 ( 716938 ) on Wednesday April 13, 2005 @05:39PM (#12227833)
    Well actually, the True Believer will go waaaaay back before this Unix upstart and enter the command CATALOG from a Apple Basic 3.3 prompt, or if "modern school", CAT on a ProDOS line.

    Everytime I try to understand a *nix shell parm I have to switch to Emacs and ask the Doctor....
  • by sp0rk173 ( 609022 ) on Wednesday April 13, 2005 @05:50PM (#12227925)
    Thank you, kind sir. We have both helped each other out today. Italics on links does make more sense.
  • Re:Why I love zsh (Score:4, Interesting)

    by Anonymous Coward on Wednesday April 13, 2005 @06:54PM (#12228550)
    Whilst I am no expert on ZSH, the following seems to do what you ask for

    bindkey -s '\e\e' 'fc\n'

    This is with a freshly updated debian 'unstable' system,

    zsh --version
    zsh 4.3.0-dev-1 (i686-pc-linux-gnu)
  • by gidds ( 56397 ) <slashdot.gidds@me@uk> on Wednesday April 13, 2005 @07:28PM (#12228795) Homepage
    A good chart, but it omits the single feature which for me puts zsh head and shoulders over the others: recursive globbing.

    I used to find myself using find a lot -- mostly for handling files in subdirectories, and/or for selecting files based on metadata of various kinds. But zsh makes find almost totally unnecessary: it has a simple but very powerful syntax which extends the simple '*' and '?' file completion to allow selection by size/date/type/&c, exclusion lists, user-specified ordering, and most usefully it can select files in subdirectories too. And because it's right there in the shell, the results are easy to use without that awkward -exec syntax. I don't think I've used find once since switching to zsh!

    I really don't understand why it hasn't become more popular. It's free and open source; it can mimic other shells (notably, ksh), and it ships with systems such as Mac OS X.

  • by Brandybuck ( 704397 ) on Wednesday April 13, 2005 @08:03PM (#12229091) Homepage Journal
    Which is a shame because the world ends up with more bash-only and zsh-only scripts. As a user give me all the bash goodness you can, but as a scripter give me the lingua franca that is the vanilla bourne shell.

    I say this because I once spent months fixing hundreds of scripts in an embedded system after the OS vendor upgraded from bash-1.x to bash-2.x. If you don't need the extras that bash gives you, then use the #!/bin/sh shebang and make sure it works with sh/ash/ksh.
  • IPython (Score:5, Interesting)

    by ultrabot ( 200914 ) on Thursday April 14, 2005 @02:47AM (#12231290)
    Those shopping for a shell, and with a taste for Python, would do well to check out ipython [scipy.org].

    In the 'pysh' mode, it acts as a fully functional system shell, even on Windows. Bash and friends suck on windows, but IPython truly shines there. It really makes the command prompt use of Windows feasible, with bash like filename completion etc. Being able to extend it with python functions (as opposed to separate scripts) is a killer feature as well.

    I've actually replaced the command prompt launchers on my KDE desktop with 'ipython -p pysh' launchers.
  • by /ASCII ( 86998 ) on Thursday April 14, 2005 @03:00AM (#12231327) Homepage
    <shameless plug>

    Syntax highlighting can give you a great deal of information. I have written a shell called fish [no-ip.org], that syntax highlights the commands as you are typing them. What I find useful about this is that fish colors potential errors in red. Mistyped commands, non-existant options, reading from non-existing files and loads of other errors can be identified by just glancing on your screen.

    </shameless plug>
  • by Sq ( 30436 ) on Thursday April 14, 2005 @07:51AM (#12232095) Homepage
    "find -exec grep ..." (for example) is awkward, and it is bloody too slow (it executes command for EVERY file)

    that's why you want to use something like:
    find | xargs grep
    which will not only execute grep only once per few thousand files, but it will also work where ZSH's
    "grep ... **/*" won't -- when there are too many files (yes, UN*X has a limit on command line length, it 's just that it is somewhat bigger than DOS's 127 characters)

    while you're at it, you probably want
    find -print0 | xargs -0 grep ... (to solve the problem with those nasty whitespace characters in filenames...)
  • by opk ( 149665 ) on Thursday April 14, 2005 @08:09AM (#12232184) Journal
    All you should need is the following in your ~/.zshrc
    HISTFILE=~/.zshistory
    SAVEHIST=500
    HISTSIZE=500
    If that doesn't help let me know. Or mail zsh-users. I've never had a problem with it and it has always worked well.
    I also set these options:
    setopt EXTENDED_HISTORY
    setopt HIST_EXPIRE_DUPS_FIRST
    setopt HIST_FIND_NO_DUPS
    setopt HIST_REDUCE_BLANKS
    setopt HIST_SAVE_NO_DUPS
    setopt SHARE_HISTORY
    The last of those allows history so be shared between concurrently running shells.
  • Re:Mr Old fashioned (Score:3, Interesting)

    by /ASCII ( 86998 ) on Thursday April 14, 2005 @09:55AM (#12233140) Homepage
    While I acknowledge the existance of shell hell, I don't think your example is evidence of it. You highlight the fact the some versions of test allow for '==' to mean the same thing as '='. This, I'm sure, was done to prevent a common, harmless user error from causing trouble. All you have to do to steer clear of such problems is not to rely on 'test' to support non-standard options.

    There is however another problem related to the one you outline above. bash, zsh and probably most of the other shells in your example do not use the standard test command, but do instead use a builtin with the same name. I think including dozens of standard unix commands such as kill, test and printf in the shell binary as builtins is a design mistake. It breaks the unix tradition of doing one thing and doing it well. At least bash has had some trouble with fd redirections and builtins. A bug in a builtin may cause the entire shell to crash. When the user switches shells or invokes a program directly, and not through the shell, he/she may find out that the programs syntax has changed!

    For the reasons outlined above, I think the only commands that the shell should provide as builtins are the ones that can not be implemented as a separate command, such as cd, exit and if.

"A car is just a big purse on wheels." -- Johanna Reynolds

Working...