home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
pcmag
/
v14n08
/
nobat.exe
/
NO.BAT
next >
Wrap
DOS Batch File
|
1994-10-12
|
310b
|
13 lines
@ECHO OFF
REM NO.BAT - excludes files from command
IF '%2'=='' GOTO Syntax
ECHO Excluding %1
ATTRIB +H %1
REM Use CALL in next line in case command is a batch file
CALL %2 %3 %4 %5 %6 %7 %8 %9
ATTRIB -H %1
GOTO End
:==== Syntax ====
ECHO SYNTAX: NO filespec command [parameters]
:==== End =======