programming-examples/perl/SystemFunction/Call external command.pl

8 lines
107 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl
use strict;
use warnings;
my $dir = "/home";
my $files = `dir $dir`;
print $files;