Help for this page

Select Code to Download


  1. or download this
    The-Air:~/private/lewis_folder/client$ cat wjma.pl
    #!/usr/bin/env perl
    use warnings;
    use strict;
    print "HEY\n";
    
  2. or download this
    The-Air:~/private/lewis_folder/client$ which perl
    /Users/chap/perl5/perlbrew/perls/perl-5.34.0/bin/perl
    
  3. or download this
    The-Air:~/private/lewis_folder/client$ ./wjma.pl
    HEY
    
  4. 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$
    
  5. 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>
    
  6. 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$
    
  7. 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$