12345678910111213141516171819202122 |
- @echo off
- if not "x%1" == "x" echo Please change to the directory you want to convert and run the script there without any command line argument! && goto endlabel
- echo.
- echo Press ENTER to convert all NED files under the current directory:
- cd
- echo.
- pause
- dir /s /b *.ned >nedfiles.lst
- echo The following files will be checked/modified:
- type nedfiles.lst | more
- echo.
- echo Press ENTER to start the conversion, or CTRL-C to quit.
- pause
- perl %~dp0\mergenedconns.pl nedfiles.lst
- echo You may safely re-run this script any time you want.
- :endlabel
|