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