- or download this
#!/usr/bin/env perl
use strict;
...
unlink $file;
}
}
- or download this
#!/usr/bin/env perl
use strict;
...
# Rename/move file
move($file, $file . '.done');
}
- or download this
...
# Do some work
my @files = glob('/root/fd/fg/*.txt');
sleep(4);
foreach my $file(@files) {
...