If your script
and you start your script with
./script foo
The OS will launch Perl as follows:
/usr/bin/perl -CSDA ./script foo
Changes in behavior come into play only when the script is run incorrectly, for example, using
/usr/bin/perl ./script foo
Fix do not remove -CSDA , the fix should properly call the script.
ikegami
source share