Is it possible to run a perl cgi script from the command line?
What I mean is when the cgi script is called from the browser it uses a line like
mycgi.pl?var1=val&var2=val
is it possible to run this from the console like:
perl mycgi.pl?var1-val&var2=val
I have noticed that doing it like that doesn't work but am wondering if there is another way...
TIA