I think your question is "how do I run a perl script?"
My answer would then be:
Say your script file is /home/user/script.pl
The first line of the script file should be:
You would run:
Code:
chmod 755 /home/user/script.pl
cd /home/user/
./script.pl
If not, try a "which perl" and update your first line.