Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl # GLOBAL - execute a shell command in every subdirectory under cwd # Stephen Flitman 022408 - inspired by 4NT # Released under GPLv2 use strict; use File::Find::Object; use Getopt::Std; my %opts; getopts('hiptvx:',\%opts); if ($opts{h} or scalar @ARGV<1) { print <<"EOT"; Usage: global [-hitv] [-x pat] 'command' [dir...] Execute command in each specified directory plus subdirectories, or + the current directory and all of its subdirectories. -h This help information. -i Ignore errors. -p Show progress. -t Test mode (does not execute command). -v Verbose (takes precedence over -p). -x pat Exclude all directories matching this shell wildcard pat +tern. EOT exit(1); } my $pat=$opts{x}; $pat=~s/\./\\./g; # protect dots $pat=~s/\*/.*/g; # shell wildcard to regexp match any $pat=~s/\?/./g; # shell wildcard to regexp match one char my $cmd=shift @ARGV; my $nDirs=0; my $nErrors=0; my @dirs=@ARGV; push @dirs,'.' unless @dirs; my $tree=File::Find::Object->new({},@dirs); while (my $dir=$tree->next()) { if (-d $dir) { next if $pat and $dir!~/$pat/o; ++$nDirs; if ($opts{v}) { printf "%4d. $dir\n",$nDirs; } elsif ($opts{p}) { print "$nDirs\r"; } unless ($opts{t}) { my $output=qx/cd "$dir"; $cmd 2>&1/; print $output if $opts{v}; if ($?) { printf "$cmd returns error code %d\n",($?>>8) if $opts{v}; exit 1 unless $opts{i}; ++$nErrors; } } } } printf "Processed %d director%s with %d error%s.\n",$nDirs,$nDirs==1?' +y':'ies',$nErrors,$nErrors==1?'':'s'; exit 0;

In reply to global by sflitman

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found