in reply to Re: Environmental Settings
in thread Environmental Settings
A better way would be to write a shell script that takes 2 arguments and then call that from perl. Ie:
script.sh
#!/bin/bash
/PATH/initialize_system
/PATH/skew.k $1
/PATH/savegif.k $2
And then your perl script just runs:
system("script.sh $arg_for_frame_number $frame_number");
I guess the shell script could be perl too, but there is more than one way to do it :)
|
|---|