Skip to main content

How to run a basic Perl script?

Comments

2 comments

  • kadrin
    Try perl -T #!/usr/bin/perl -T use 5.010; use CGI; use strict; use warnings; my $q = CGI->new(); say $q->header(), $q->start_html(); my $file = '../_new.jpg'; $file = '../DSC4883.jpg'; use Image::ExifTool qw(:Public); my $exifTool = new Image::ExifTool;
    0
  • cPanelLauren
    You might get some helpful information from the multitude of perl tutorials out there as well:
    0

Please sign in to leave a comment.