Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!usr/bin/perl
use File::Copy;
my (undef,undef,undef,$mday,$mon,$year,undef,undef,undef) = localtime;
$year += 1900;
$mon += 1;
$date = sprintf "%02d/%02d/%04d", $mon, $mday, $year;
copy ('/path/to/file.ext', "/path/to/new/file$date.ext");
#!perl -w
#
#drmfilecopy.pl - Copies drm.zip to another directory with date stamp daily
#Provided by Rieekan via tek-tips.com forum. Modified by George Knight OMH IT
use File::Copy;
my (undef,undef,undef,$mday,$mon,$year,undef,undef,undef) = localtime;
$year += 1900;
$mon += 1;
$date = sprintf "%02d/%02d/%04d", $mon, $mday, $year;
copy ('c:\tsm_logs\drm.zip', "c:\tsm_logscopy\drm$date.zip");
#!perl -w
#
#drmfilecopy.pl - Copies drm.zip to another directory with date stamp daily
#Provided by Rieekan via tek-tips.com forum. Modified by George Knight OMH IT
use File::Copy;
#my (undef,undef,undef,$mday,$mon,$year,undef,undef,undef) = localtime;
#$year += 1900;
#$mon += 1;
#$date = sprintf "%02d/%02d/%04d", $mon, $mday, $year;
copy ('c:\tsm_logs\drm.zip', "c:\tsm_logscopy\drm$date.zip");
!perl -w
#drmfilecopy.pl - Copies drm.zip to another directory with date stamp daily
#Provided by Rieekan via tek-tips.com forum. Modified by George Knight OMH IT
use File::Copy;
my (undef,undef,undef,$mday,$mon,$year,undef,undef,undef) = localtime;
$year += 1900;
$mon += 1;
$date = sprintf "%02d/%02d/%04d", $mon, $mday, $year;
copy ("c:/tsm_logs/drm.zip", "c/tsm_logscopy/drm".$date.".zip");