[Date Prev][Date Next][Subject Prev][Subject Next][ Date Index][ Subject Index]

Re: XPL best practices



** Reply to message from "Patricia M. Godfrey"  on Sat, 11
Nov 2006 15:40:36 -0500


> Content of xytowp.cod:
> @echo off
> cd d:\xyw4dos\filters
> echo Export XyWrite %1 to WordPerfect v6 %2
> W4W17F.EXE %1 /N /V2
> DELAY.EXE 2
> if exist %2 del %2
> REM /V1=WordPerfect v6.0; TRY also /V2 switch for v6.1
> W4W48T.EXE %2 /N /V1

You need to say, either (simplest):
 d:
 cd [d:]\xyw4dos\filters
or, under NT's CMD.EXE:
 cd /D d:\xyw4dos\filters
or (because it works on any Win32 platform, using KMD.EXE):
 kmd /c cd /D d:\xyw4dos\filters
Use the /D switch to change current drive in addition to changing current
directory for a drive. Not available with Win9x's COMMAND.COM

-----------------------------
Robert Holmgren
holmgren@xxxxxxxx
-----------------------------