This may be really dumb, but I can't find the answer anywhere.
I have a perl script that I want to call within another perl script. I searched the docs and came up with the command DO as in:
do "/path/to/script.pl";
Ok that works just fine, but what if I want to pass a value to the perl script? I can't get that part working, ie:
do "/path/to/script.pl argument1";
Maybe I'm just braindead but I can't get that to work. I've tried adding extra quotes in there, escaping the space character, etc to no avail. What should I do?