Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: perl oneliner on multiple files

by jwkrahn (Abbot)
on Feb 09, 2013 at 01:12 UTC ( [id://1017915]=note: print w/replies, xml ) Need Help??


in reply to perl onliner on multiple files

% perl -lne'/(\d+): /and$c+=$1;eof&&print"SUM.$ARGV =$c"' tmp_*

Replies are listed 'Best First'.
Re^2: perl oneliner on multiple files
by abhay180 (Sexton) on Feb 09, 2013 at 10:18 UTC
    Hi, Thanks....this also will work..but w a slight correction...need to zero out $c at eof.
    perl -lne'/(\d+): /and$c+=$1; eof&&print"SUM.$ARGV =$c"; if(eof) {$c=0 +}' tmp_1*
      perl -c -lne'/(\d+): /and$c+=$1;eof&&($c=!print"SUM.$ARGV =$c")' tmp_*

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1017915]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-19 13:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found