Help for this page

Select Code to Download


  1. or download this
    $ perl -v
    
    ...
    
    $ uname -a
    Darwin ganymede 11.4.2 Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:
    +48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64 x86_64
    
  2. or download this
    $ cat pm_sh_escape.pl
    #!/usr/bin/env perl
    ...
    my $cmd = "printf 'I\\x27ll'";
    print $cmd . "\n";
    print `$cmd` ."\n";
    
  3. or download this
    $ pm_sh_escape.pl
    printf 'I\x27ll'
    I'll
    
  4. or download this
    $ printf 'I\x27ll'
    I'll