so here at work the consultants write these perl scripts that we use, and you just go to the prompt and type something like "owner text" where owner is the command and text is some owner that you want to look up, and it works no matter what directory you're in.
how does this work? i tried writing a hello world perl script, but when i typed in the filename, nothing happened. all the file has in it is:
#!/usr/local/bin/perl
print "hello world\n";
do i have to do something special to run from cmd line?
how does this work? i tried writing a hello world perl script, but when i typed in the filename, nothing happened. all the file has in it is:
#!/usr/local/bin/perl
print "hello world\n";
do i have to do something special to run from cmd line?