in reply to Re: Shell scripts and perl
in thread Shell scripts and perl
(Drifting slightly offtopic, but . . . :)
Are unlikely to fail. (I find pipeline error handling difficult: grep '\.pl$' foo | sort | uniq | xargs find. Now exactly where is the error? )
zsh provides a pipestatus variable which is an array of the exit statusen from each component of the last pipeline. Granted that doesn't solve problems where one part of the pipe is generating bad data, but it does let you handle a few more kinds of problems.
Update: Oop, quite right. Recent bash have stolen :) this zsh functionality (along with programmable completions and other Z goodies :).
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Shell scripts and perl
by tcf03 (Deacon) on Sep 10, 2007 at 14:23 UTC |
In Section
Seekers of Perl Wisdom