in reply to Re^3: Can't find a module that is installed
in thread Can't find a module that is installed
...and this is wrong:
perl -E 'BEGIN[unshift @INC, ".";} use forks' ^
That bracket [ should be a brace {.
However, as anonymonk pointed out, it's much cleaner to write it as:
perl -I. -E 'use forks'
|
|---|