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
$file="/home/rk0000/$ARGV[0]";
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blks)= stat($file);
(@date)=localtime(mtime);
$date[5]+=1900;$date[4]++;
print "Date of file $file is \t ".sprintf("%0.4d-%0.2d-%0.2d",$date[5],$date[4],$date[3]);