home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / pcmag / v14n08 / nobat.exe / NO.BAT next >
DOS Batch File  |  1994-10-12  |  310b  |  13 lines

  1. @ECHO OFF
  2. REM NO.BAT - excludes files from command
  3. IF '%2'=='' GOTO Syntax
  4. ECHO Excluding %1
  5. ATTRIB +H %1
  6. REM Use CALL in next line in case command is a batch file
  7. CALL %2 %3 %4 %5 %6 %7 %8 %9
  8. ATTRIB -H %1
  9. GOTO End
  10. :==== Syntax ====
  11. ECHO SYNTAX: NO filespec command [parameters]
  12. :==== End =======
  13.