A
Alex
Hi all, how can i execute unix commands from perl?
Walter Roberson said::Hi all, how can i execute unix commands from perl?qx(command), `command`,
(those two are the same thing)
system(command), open(command|)
open(|command), fork and exec the desired command...
You can use exec() without fork() too, but the semantics of that
are not often desired.
and I'm
sure there's others.
I'm not.
I think you got them all (apart from modules).
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.