in reply to Re^2: perl -e problem
in thread perl -e problem

For others' edification, truss : Solaris :: strace : Linux. See: Monitoring and Tracing Unix Processes

An strace command to do the same thing as the above truss command would be (sorry if flags aren't portable; strace version 4.5.9): strace -f -e trace=open perl ...

Thanks for the extremely helpful tip merzy.