- or download this
The-Air:~/private/lewis_folder/client$ cat wjma.pl
#!/usr/bin/env perl
use warnings;
use strict;
print "HEY\n";
- or download this
The-Air:~/private/lewis_folder/client$ which perl
/Users/chap/perl5/perlbrew/perls/perl-5.34.0/bin/perl
- or download this
The-Air:~/private/lewis_folder/client$ ./wjma.pl
HEY
- or download this
The-Air:~/private/lewis_folder/client$ perl -d wjma.pl
...
main::(wjma.pl:4): print "HEY\n";
DB<1> HEY
The-Air:~/private/lewis_folder/client$
- or download this
The-Air:~$ /bin/pwd
/Users/chap
...
main::(/Users/chap/private/lewis_folder/client/wjma.pl:4):
4: print "HEY\n";
DB<1>
- or download this
The-Air:~/private/lewis_folder/client$ perl -d /Users/chap/private/per
+l/wjma.pl
...
4: print "HEY\n";
DB<1> HEY
The-Air:~/private/lewis_folder/client$
- or download this
The-Air:~/private/lewis_folder/client$ ls -al
total 56
...
-rw-rw-r-- 1 chap staff 4880 Jan 17 19:56 lewis-client.config
-rwxr-xr-x 1 chap staff 61 Jan 18 08:22 wjma.pl
The-Air:~/private/lewis_folder/client$