mirror of
https://github.com/forth-ev/VolksForth.git
synced 2024-11-22 05:32:28 +00:00
5 lines
103 B
Bash
Executable File
5 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
# converts from ATASCII (Atari 400/800/XL/XE) to ASCII
|
|
|
|
tr '\233\177' '\12\11' < ${1} > ${2}
|