mirror of
https://github.com/bobbimanners/Applecorn.git
synced 2024-11-15 19:07:03 +00:00
12 lines
427 B
Bash
Executable File
12 lines
427 B
Bash
Executable File
#!/bin/sh
|
|
for file in APPLECORN AUXMEM.BYTWRD AUXMEM.CHARIO AUXMEM.HOSTFS AUXMEM.INIT AUXMEM.MISC AUXMEM.MOSEQU AUXMEM.OSCLI AUXMEM.VDU LOADER MAINMEM MAIN.ROMMENU; do
|
|
cadius extractfile applecorn.po /APPLECORN/${file}.S .
|
|
rm _FileInformation.txt
|
|
cadius clearhighbit ${file}.S\#040000
|
|
cadius indentfile ${file}.S\#040000
|
|
FNAME=`echo ${file}.s | tr [:upper:] [:lower:]`
|
|
mv -v ${file}.S\#040000 $FNAME
|
|
done
|
|
git diff
|
|
|