2021-07-17 06:13:07 +00:00
|
|
|
#!/bin/sh
|
2021-09-23 22:16:21 +00: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 04:17:47 +00:00
|
|
|
cadius extractfile applecorn.po /APPLECORN/${file}.S .
|
|
|
|
rm _FileInformation.txt
|
|
|
|
cadius clearhighbit ${file}.S\#040000
|
|
|
|
cadius indentfile ${file}.S\#040000
|
2021-09-09 17:38:27 +00:00
|
|
|
FNAME=`echo ${file}.S | tr [:upper:] [:lower:]`
|
2021-08-12 21:06:40 +00:00
|
|
|
mv -v ${file}.S\#040000 $FNAME
|
2021-07-28 04:17:47 +00:00
|
|
|
done
|
2021-08-12 21:14:42 +00:00
|
|
|
git diff
|
|
|
|
|