in reply to Re^5: Resseting perl -M file mod after xx minutes
in thread Resseting perl -M file mod after xx minutes
orif (scalar(@Files) > 1) {
should be replaced withif (@Files > 1) {
orif (scalar(@Files) > 0) {
orif (@Files > 0) {
if (@Files) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Resseting perl -M file mod after xx minutes
by mzedeler (Pilgrim) on Jul 13, 2009 at 18:49 UTC |