flieckster has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/env perl use File::Find; use File::Copy; use Net::SMTP; use File::Basename; use File::Slurp; use POSIX qw(strftime); my $date = strftime("%m-%d-%y",localtime); my $time = strftime("%I:%M:%S",localtime); my $findme = '\photorepos\Perl\Mother\WorkLoad\'; chdir($findme) or warn "$!";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: moving from mac to PC
by Your Mother (Archbishop) on Oct 28, 2016 at 01:48 UTC | |
by AnomalousMonk (Archbishop) on Oct 28, 2016 at 02:23 UTC | |
by afoken (Chancellor) on Oct 28, 2016 at 06:27 UTC | |
by Discipulus (Canon) on Oct 28, 2016 at 07:25 UTC | |
by RonW (Parson) on Oct 28, 2016 at 18:19 UTC | |
| |
Re: moving from mac to PC (updated!)
by haukex (Archbishop) on Oct 28, 2016 at 07:41 UTC | |
by Your Mother (Archbishop) on Oct 28, 2016 at 12:45 UTC | |
by haukex (Archbishop) on Oct 28, 2016 at 14:26 UTC | |
by afoken (Chancellor) on Oct 28, 2016 at 17:52 UTC | |
Re: moving from mac to PC
by Laurent_R (Canon) on Oct 28, 2016 at 06:22 UTC |