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.
#!perl
$file = 'some_file.txt';
$size = int((stat($file))[7]/1000);
print "File Size: $size K\n";
if ($size > 10) { open(HANDLE,">$file"); }
else { open(HANDLE,">>$file"); }