in reply to Windows specific shell command calls

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re: Windows specific shell command calls

Replies are listed 'Best First'.
Re: Re: Windows specific shell command calls
by Caron (Friar) on Mar 26, 2004 at 11:57 UTC

    isn't this stuff copyrighted?

    Perhaps the info on perlop should be enough.

    On some platforms (notably DOS-like ones), the shell may not be capable of dealing with multiline commands, so putting newlines in the string may not get you what you want. You may be able to evaluate multiple commands in a single line by separating them with the command separator character, if your shell supports that (e.g. ; on many Unix shells; & on the Windows NT cmd shell).

    ...

    Beware that some command shells may place restrictions on the length of the command line. You must ensure your strings don't exceed this limit after any necessary interpolations. See the platform-specific release notes for more details about your particular environment.

Re: Re: Windows specific shell command calls
by Anonymous Monk on Mar 27, 2004 at 10:41 UTC