in reply to DOS coding compatibility with perl "é"->"'"
I believe you're saying "When I run this command with *this* argument, the argument gets mangled"
Short Answer (I think, not tested at all):
system("VisualSourceSafe", "history", $variable);
Long answer: you're giving system 1 argument, which contains a "special" character, so system hands it to the shell for processing. Passing system a list avoids that problem.
Check perldoc -f system for more information.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: DOS coding compatibility with perl "é"->"'"
by blanchon (Initiate) on Oct 01, 2003 at 12:55 UTC |