in reply to Re^2: Exec() argument format
in thread Exec() argument format
$^X is just a special variable, and it contains a string representing the full path to the current Perl interpreter. This is very helpful if you have more than one Perl installed.
For example, try running the following:
perl -e 'print $^X'
On the Win32 machine I'm using here at work, with ActiveState Perl, this prints:
C:\Perl\bin\perl.exe
|
|---|