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.
while (<>) { print; }
#!/usr/bin/perl
use strict;
open( my $ls_output, '-|', 'ls' )
or die "Cannot execute ls - $!";
print "$_\n" while (<$ls_output>);
close( $ls_output );