pyro.699 has asked for the wisdom of the Perl Monks concerning the following question:
I cannot get it working quite right, i want the user to have the ability to use one of the following: *.* *.ext file.* file.ext Thanks a ton ~Cody Woolaver$file = $ARGV[0]; $find = $ARGV[1]; $replace = $ARGV[2]; @split = split(/\./, $file); opendir(DIR, "."); if ($file = /\*\.\*/) { @format = grep(/\./, readdir(DIR)); # *.* } if ($file = ".\.\*") { @format = grep($split[0]./\../, readdir(DIR)); # test.* } if ($file = "\*\..") { @format = grep(/.\./.$split[1], readdir(DIR)); # *.txt } if ($file = ".\..") { @format = grep($split[0]./\./.$split[1], readdir(DIR)); # te +st1.txt } $file_count = 0; for $file (@format) { ... } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Wildcards and Files
by imp (Priest) on Apr 04, 2007 at 00:16 UTC | |
|
Re: Wildcards and Files
by ferreira (Chaplain) on Apr 04, 2007 at 09:50 UTC |