Help for this page

Select Code to Download


  1. or download this
       #!/usr/bin/env LD_LIBRARY_PATH=/my/lib /usr/bin/perl
    
       warn "$ENV{LD_LIBRARY_PATH}\n";
    
  2. or download this
       #!/usr/bin/env /usr/bin/perl
    
  3. or download this
       #!/bin/sh -- # -*- perl -*-
       eval 'exec /usr/bin/env LD_LIBRARY_PATH=/my/lib /usr/bin/perl -S $0
    + ${1+"$@"}'
          if $runningUnderSomeShell;
    
  4. or download this
       #!/usr/bin/perl
       BEGIN {$ENV{LD_LIBRARY_PATH}='/my/lib'}
       use SVN::Core;
       ...