mirror of
https://github.com/forth-ev/VolksForth.git
synced 2024-11-22 05:32:28 +00:00
Atari 8bit: ATASCII Convert tools
This commit is contained in:
parent
6532beb620
commit
df2c73423d
4
tools/from-atascii.sh
Executable file
4
tools/from-atascii.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
# converts from ATASCII (Atari 400/800/XL/XE) to ASCII
|
||||
|
||||
tr '\233\177' '\12\11' < ${1} > ${2}
|
4
tools/to-atascii.sh
Executable file
4
tools/to-atascii.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
# converts from ASCII to ATASCII (Atari 400/800/XL/XE)
|
||||
|
||||
tr '\12\11' '\233\177' < ${1} > ${2}
|
Loading…
Reference in New Issue
Block a user