in reply to Re^3: how to dir a directory that have space
in thread how to dir a directory that have space
By way of example of the inconsistent nature of the internal handling of the list form:
system 'perl', '-E', 'say 12345;';; ## Works! 12345 system 'perl', '-E', 'say "hello world";';; ## Doesn't work. system 'perl', '-E', 'say \"hello world\";';; ## Doesn't work. system 'perl', '-E', '"say \"hello world\";"';; ## Works! hello world system 'perl', '-E', '\"say \"hello world\";\"';; ## Doesn't work, Can't find string terminator '"' anywhere before EOF at -e line 1.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: how to dir a directory that have space (examples)
by Anonymous Monk on Jan 16, 2015 at 11:46 UTC | |
by BrowserUk (Patriarch) on Jan 16, 2015 at 12:34 UTC | |
by Anonymous Monk on Jan 16, 2015 at 12:50 UTC | |
by BrowserUk (Patriarch) on Jan 16, 2015 at 13:06 UTC |