home *** CD-ROM | disk | FTP | other *** search
- @Echo off
- Echo off
- Echo ╒═════════════════════════════════════════════════════╕
- Echo │ Sorting SFCB 1.2 Exchange file ... │
- Echo ╘═════════════════════════════════════════════════════╛
- if not exist sfcb.xch goto NotThere
- sort < sfcb.xch > sfcb.$$$
- if not exist sfcb.$$$ goto SortError
- del sfcb.xch
- ren sfcb.$$$ sfcb.xch
- Echo Finished sort.
- Goto quit
- :NotThere
- Echo Could not find file SFCB.XCH to sort!
- goto Quit
- :SortError
- Echo Error during sorting!
- :Quit
-