in reply to can't locate auto/*/autosplit.ix in @INC
Quickly googling and learning what happens in AutoLoader.pm around the line mentioned in the error message, I was able to apply the workaround:perl -MA::B::C -e1
After this "patching" the following command works fine:mkdir -p auto/A/B/C echo '1;' > auto/A/B/C/autosplit.ix
perl -MA::B::C -e1
|
|---|