programming-examples/perl/SystemFunction/Launching Processes by using Calling exec.pl

11 lines
120 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
# The basic syntax is: exec program, arguments
#!/usr/bin/perl -w
#
# Using exec.
#
exec("xterm", "-ls");