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.
`ls -l |awk '{print $4}' >> /tmp/o`;
system('ls -l |awk '{print $4}' >> /tmp/o');
open PIPE, "ls -l |awk '{print \$4}' |" or die "failed to open pipe";
while(<PIPE>) {
chomp;
# Process each line here
}
close PIPE;
system(q!/nas/bin/nas_fs -list | egrep -v 'root|name' | awk '{print $6}'|sed '/^$/d' > /tmp/fs_list!);
my $string = q!This is a string!;