mirror of
https://github.com/bobbimanners/Applecorn.git
synced 2024-11-05 02:08:07 +00:00
15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# For importing JGH's files into Github
|
||
|
|
||
|
for i in *.s; do
|
||
|
fromdos $i
|
||
|
sed -i s/^\;/\*/ $i
|
||
|
cadius outdentfile $i
|
||
|
cadius sethighbit $i
|
||
|
mv $i $i#040000
|
||
|
cadius deletefile applecorn.po /APPLECORN/$i
|
||
|
cadius addfile applecorn.po /APPLECORN $i#040000
|
||
|
done
|
||
|
|