home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo Test of globbing & argv[0]
- gcc t11.c -o t11
- set GOBAT=%GO32%
-
- set GO32=
- echo default case
- go32 t11 t1*.bat
-
- set GO32=glob
- echo with globbing
- go32 t11 t1*.bat
-
- set GO32=noglob
- echo without globbing
- go32 t11 t1*.bat
-
- set GO32=%GOBAT%
- set GOBAT=
-
- copy ..\bin\stub.exe t11b.exe
- stubedit t11b.exe runfile=t11
- echo using symbolic links
- t11b t1*.bat
-