in reply to Re^5: replicating the command 'unset LIBPATH' in perl
in thread replicating the command 'unset LIBPATH' in perl
BEGIN { if (exists $ENV{LIBPATH}) { delete $ENV{LIBPATH}; exec $^X, __FILE__, @ARGV; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: replicating the command 'unset LIBPATH' in perl
by viffer (Beadle) on May 19, 2010 at 02:07 UTC | |
by Anonymous Monk on May 19, 2010 at 03:06 UTC | |
by viffer (Beadle) on May 19, 2010 at 06:33 UTC | |
by ikegami (Patriarch) on May 19, 2010 at 06:55 UTC | |
by viffer (Beadle) on May 20, 2010 at 00:32 UTC | |
|