home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="" goto nofind
- if not exist %1 goto nofind
- CLS
- copy %1 nufile > nul
- :loop
- if "%2"=="" goto display
- find "%2" nufile > temp
- copy temp nufile > nul
- shift
- goto loop
- :display
- type nufile | more
- type srt.lbl
- goto end
- :nofind
- echo file "%1" not located
- :end