Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^4: If I had a Free Two Months...

by diotalevi (Canon)
on Jun 22, 2005 at 17:17 UTC ( [id://469100]=note: print w/replies, xml ) Need Help??


in reply to Re^3: If I had a Free Two Months...
in thread If I had a Free Two Months...

Oh oh. Here's the same non-buggy version that does invoke the shell. To fix the bug in your code, you'll need to follow symlinks and whenever considering entering a directory, decide whether you've been there before. Symlinks will cause your existing code to enter infinite loops and to run the command on some things more than once.

#!perl -w use strict; use File::Find; my ( $start_dir, $command ) = @ARGV; find( sub { system $command if -d }, $start_dir );

Replies are listed 'Best First'.
Re^5: If I had a Free Two Months...
by samizdat (Vicar) on Jun 23, 2005 at 16:51 UTC
    See? Thanks to PM, I know have my whole 2 months back. Awesome, diotalevi, and also kudos to those who've pointed out how to use *NIX find! :D

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 17:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found