in reply to system commands in win32

Try  system('J:\VSS\win32\ss.exe','cp',"$/Some/Thing");

Your single-quotes in  system('"J:\VSS\win32\ss.exe" cp "$/Some/Thing"'); cause the double quotes not to interpolate. So you are running the command
C:\>"J:\VSS\win32\ss.exe" cp "$/Some/Thing";.

HTH

grep
grep> cd pub grep> more beer

Replies are listed 'Best First'.
Re: Re: system commands in win32
by Anonymous Monk on Jan 05, 2002 at 19:47 UTC
    I don't want it to interpolate "$/Some/Thing"(hence using the single quotes).