mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-26 12:11:47 +00:00
1) The readme is out-of-date, and unreadable on github 2) Some tools have their own directories, some don't 3) Many tools have neither readme nor descriptions. 4) Some files are misplaced This reorganizes so that each tool has its own directory, even if it only has a single file (Hint: If you use a tool, please add/update READMEs) The master README is complete, and readable on github The tools are in alphabetical order within category. There are some cases where this probably isn't the right thing to do, e.g. where there are separate tools that do "to" and "from" conversions. Each tool has at least a 1-line description in the master readme This commit does not change any tool.
15 lines
529 B
Plaintext
15 lines
529 B
Plaintext
ASC is a simple utility for converting text files (delimited with
|
|
\r, \n, or \r\n) to Windows format (\r\n delimited), Unix format
|
|
(\n delimited) or Mac format (\r delimited).
|
|
|
|
ASC is invoked from a DOS prompt with the command:
|
|
|
|
> ASC {-m|u|w} file1 file2 ...
|
|
|
|
The optional switch specifies Mac processing (-m), Unix processing
|
|
(-u), or Windows processing (-w). If no switch is specified, Windows
|
|
processing is performed.
|
|
|
|
Each file is processed in turn. If the file is name.ext, the converted
|
|
file is name.new.
|