Quote:
|
Originally Posted by Infinite Recursion
yes, parameters will work fine.
$0 = program name
$1 = 1st parameter
$2 = 2nd parameter
|
Yeah... that will work if you want to run
./a.out <infilename> <outfilename>
Then you just use
$1 and
$2 to reffer to
infilename and
outfilename, respectively.