http://qs321.pair.com?node_id=118507


in reply to Another Q about piping Perl

Several replies mention "-pe" but the default behavior of 'sed' is actually best duplicated with "-ne": echo $HOME/Mail/* | perl -ne "print if s/sent-mail //"

        - tye (but my friends call me "Tye")