2021-07-17 02:13:07 -04:00
|
|
|
#!/bin/sh
|
2021-09-23 18:16:21 -04:00
|
|
|
for file in APPLECORN AUXMEM.BYTWRD AUXMEM.CHARIO AUXMEM.GFX AUXMEM.HOSTFS AUXMEM.INIT AUXMEM.MISC AUXMEM.MOSEQU AUXMEM.OSCLI AUXMEM.VDU MAINMEM.FSEQU MAINMEM.GFX MAINMEM.INIT MAINMEM.LDR MAINMEM.LISTS MAINMEM.MENU MAINMEM.MISC MAINMEM.PATH MAINMEM.SVC MAINMEM.WILD; do
|
2021-07-28 00:17:47 -04:00
|
|
|
cadius extractfile applecorn.po /APPLECORN/${file}.S .
|
|
|
|
rm _FileInformation.txt
|
|
|
|
cadius clearhighbit ${file}.S\#040000
|
|
|
|
cadius indentfile ${file}.S\#040000
|
2021-09-09 13:38:27 -04:00
|
|
|
FNAME=`echo ${file}.S | tr [:upper:] [:lower:]`
|
2021-08-12 17:06:40 -04:00
|
|
|
mv -v ${file}.S\#040000 $FNAME
|
2021-07-28 00:17:47 -04:00
|
|
|
done
|
2021-08-12 17:14:42 -04:00
|
|
|
git diff
|
|
|
|
|