programming-examples/perl/SystemFunction/Call external command.pl
2019-11-15 12:59:38 +01:00

8 lines
107 B
Perl

#!/usr/bin/perl
use strict;
use warnings;
my $dir = "/home";
my $files = `dir $dir`;
print $files;