in reply to Re^2: backticks and 'Cannot allocate memory'
in thread backticks and 'Cannot allocate memory'
However, my pwd does succeed. It still leaves $! to be 1, but it's string value changes:DB<1> x $?, $! + 0 0 1 'Illegal seek'
It's curious to see your pwd fails. Is that from a debugging session where you aren't doing anything else? What happens if you use the fully qualified name to pwd? Anyway, the external pwd failing isn't something that happens on the perl level.DB<2> x qx|pwd| + 0 '/tmp ' DB<3> x $?, $! + 0 0 1 ''
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: backticks and 'Cannot allocate memory'
by NetWallah (Canon) on Sep 24, 2010 at 17:18 UTC | |
by JavaFan (Canon) on Sep 24, 2010 at 17:54 UTC |