I am new to Unix. I am trying to Run a Perl script on Fedora 14 machine.
I wrote the script and saved it in a file called PerlOne.pl and changed its permission to 755. This is what it has
#!/usr/bin/perl
print "hello";
I tried to run it so I got
/usr/bin/perl : bad interpreter no such file or directory.
So I checked if I already have perl by typing
perl -v
I got
perl: command not found
Is it possible that Fedora comes with no perl? or am I doing something wrong? if yes, then how can I install perl?
Any help would be appreciated =)

which perl? – Suicidal Steve Oct 18 '12 at 14:15yum --showduplicates list perlshow. – raina77ow Oct 18 '12 at 14:23