in reply to Re^2: Opening external files with arguements
in thread Opening external files with arguements

It is a simple test program.
Post your code. That will help a lot.


holli, /regexed monk/
  • Comment on Re^3: Opening external files with arguements

Replies are listed 'Best First'.
Re^4: Opening external files with arguements
by void_Anthony() (Acolyte) on Apr 29, 2005 at 19:26 UTC
    Here is the program (in C++)
    int main(int argc, char *argv[]) { cout << argv[1]; system("PAUSE"); return EXIT_SUCCESS; }
    Just takes the arguement that was specified at run time and spits it back out. I want to be able to call this program from within my Perl code (preferably with arguements that are variables that I have specified in the Perl code as well.)