in reply to Running a Command Line from your Program

To run a command line program use system()
system("wzzip -yp temp.zip file.txt");
To get the output of a command use `` (backticks)
$output = `wzzip -yp temp.zip file.txt`;
These are the two most common ways to run command line programs (and most other programs for that matter).
HTH

broquaint