programming-examples/perl/SystemFunction/Calling system.pl
2019-11-15 12:59:38 +01:00

5 lines
88 B
Perl

#!/usr/local/bin/perl
@proglist = ("echo", "hello, world!");
system(@proglist);