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