in reply to how to run perl file in linux
Easiest way is typing perl cpg4.pl at the bash prompt, This runs the perl interpreter on your program.
Another way is add a "shebang" (#!/usr/bin/perl) line at the beginning of your script and mark the script as executable with the "chmod" command, and then run it like any other executable script.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to run perl file in linux
by CountZero (Bishop) on May 13, 2014 at 13:55 UTC | |
by kevbot (Vicar) on May 14, 2014 at 04:27 UTC |