in reply to why IPC::Open3 can't execute MS-DOS "dir" command?
Very likely because dir isn't actually a command in and of itself, but is a built-in command of cmd.exe
Change "dir * \/b\/s" to be "cmd /C dir * \/b\/s"
You also shouldn't call subroutines with the & prefix, unless you know the behaviour that implies
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: why IPC::Open3 can't execute MS-DOS "dir" command?
by Anonymous Monk on Dec 07, 2009 at 01:17 UTC |