Help for this page

Select Code to Download


  1. or download this
      my $paths = join "\0", @_;
      $paths .= "\0\0";
    
  2. or download this
      my $paths = join "\0", @_, "\0";
    
  3. or download this
    johngg@aleatico:~$ perl -Mstrict -Mwarnings -E '
    my @p = qw{ a b c };
    ...
    print $p;' | hexdump -C
    00000000  61 00 62 00 63 00 00                              |a.b.c..|
    00000007