home *** CD-ROM | disk | FTP | other *** search
- echo off
- if not [%1] == [] goto redirect
- testcmdl a:'14.26';b=17/30:'thirty' -c:'40a ;d=This is a packable arg.
- testcmdl a: 14.26 ;b=17/30:'thirty' -c:'40a';d='This is a non-packable arg.'
- testcmdl a:'14.26';b=17/30:'thirty' -c: 40a ;d=This is a packable arg.
- testcmdl a: 14.26 ;b=17/30:'thi"rty'-c: 40a";d='This is a non-packable arg.'
- testcmdl a:'14.26';b=17/30:'thi"rty'-c: 40a ;d=This is a packable arg.
- testcmdl a:'14.26';b=17/30:"thi'rty"-c: 40a ;d='This is a non-packable arg.'
-
- if [%1] == [] goto alldone
- :redirect
- testcmdl a:'14.26';b=17/30:'thirty' -c:'40a ;d=This is a packable arg. > %1
- testcmdl a: 14.26 ;b=17/30:'thirty' -c:'40a';d='This is a non-packable arg.' >> %1
- testcmdl a:'14.26';b=17/30:'thirty' -c: 40a ;d=This is a packable arg. >> %1
- testcmdl a: 14.26 ;b=17/30:'thi"rty'-c: 40a";d='This is a non-packable arg.' >> %1
- testcmdl a:'14.26';b=17/30:'thi"rty'-c: 40a ;d=This is a packable arg. >> %1
- testcmdl a:'14.26';b=17/30:"thi'rty"-c: 40a ;d='This is a non-packable arg.' >> %1
- :alldone
-