2 eval '(exit $?0)' && eval 'exec perl -w -S $0 ${1+"$@"}'
3 & eval 'exec perl -w -S $0 $argv:q'
6 # ******************************************************************
10 # ******************************************************************
12 # ******************************************************************
14 # ******************************************************************
23 ## Sometimes $FindBin::RealBin will end up undefined. If it is, we need
24 ## to use the directory of the built-in script name. And, for VMS, we
25 ## have to convert that into a UNIX path so that Perl can use it
27 my $basePath = (defined $FindBin::RealBin
&& $FindBin::RealBin
ne '' ?
28 $FindBin::RealBin
: File
::Spec
->rel2abs(dirname
($0)));
29 $basePath = VMS
::Filespec
::unixify
($basePath) if ($^O
eq 'VMS');
30 unshift(@INC, $basePath . '/modules');
34 # ************************************************************
36 # ************************************************************
42 # ************************************************************
44 # ************************************************************
46 my $driver = new Driver
($basePath, Driver
::workspaces
());
47 exit($driver->run(@ARGV));