in reply to Re^3: Permissions denied
in thread Permissions denied

Can you add code tags please?

«The Crux of the Biscuit is the Apostrophe»

perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help

Replies are listed 'Best First'.
Re^5: Permissions denied
by BarApp (Initiate) on Jun 29, 2017 at 17:15 UTC

    Last login: Thu Jun 29 13:02:49 on ttys000 Rachels-iMac:~ Eric$ perl cpan.txt Can't open perl script "cpan.txt": No such file or directory Rachels-iMac:~ Eric$ perl5-/prldoc/cpan.txt -bash: perl5-/prldoc/cpan.txt: Permission denied Rachels-iMac:~ Eric$

      So, what is the content of perl5-/prldoc/cpan.txt ? Does it start with a hashbang like the following:

      #!/usr/bin/perl -w

      You will need to put the path to Perl at the top of your script.

      Alternatively, just run your scripts using Perl directly:

      perl -w perl5-/prldoc/cpan.txt
        Thanks buddy I was able too access my file. How do I download/use modules?
        I have a website that I need to turn into a mobile app. I am new to perl