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.
# first start the process
open(READ,'ls /root/Desktop/proba/ |');
# and now read the output from that process one line at a time
print "Start of output from ls command\n";
while(<READ>){
# for this example I'm just going to print each line from ls
[tab]print $_, "\n";
}
print "end of output from ls command\n";