Jassica has asked for the wisdom of the Perl Monks concerning the following question:
however , it doesnt' keep the single qute around *.std* and ULOG.* so I get and error . Is there a better way than what I am doing ? thanks$find = qq(find . -name '*.std*' -o -name 'ULOG.*' -mtime +9 -type +f -exec rm {} \\;) ; system($find);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re: system command error
by merlyn (Sage) on Apr 03, 2003 at 22:37 UTC | |
|
Re: system command error
by AltBlue (Chaplain) on Apr 03, 2003 at 23:21 UTC | |
by tye (Sage) on Apr 04, 2003 at 16:16 UTC | |
|
Re: system command error
by dga (Hermit) on Apr 03, 2003 at 22:28 UTC | |
by Aristotle (Chancellor) on Apr 04, 2003 at 10:50 UTC | |
|
Re: system command error
by tachyon (Chancellor) on Apr 04, 2003 at 04:39 UTC | |
|
Re: system command error (use File::Find::Rule)
by Aristotle (Chancellor) on Apr 04, 2003 at 10:06 UTC | |
|
Re: system command error
by Improv (Pilgrim) on Apr 04, 2003 at 13:47 UTC | |
by tye (Sage) on Apr 04, 2003 at 16:23 UTC |