in reply to help adding a paramter to an executable i am running
to enclose your source code.<code>
I would recommend you type
and read the docs on system. But in your case:perldoc perlfunc
should work.#!/usr/bin/perl use strict; my @args = ('C:\\WINDOWS\\System\\deltree.exe', '/y'); system @args == 0 or die "error: $!";
|
|---|