in reply to Running a Command Line from your Program
To get the output of a command use `` (backticks)system("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).$output = `wzzip -yp temp.zip file.txt`;
broquaint
|
|---|