andrewplus / epic-mickey-docs

Epic Mickey modding/hacking documentation website.
6 stars 4 forks source link

Give tutorial for decompiling with Linux. #9

Closed abso1utezer0 closed 6 months ago

abso1utezer0 commented 1 year ago

The following shell (*.sh) script should work.

for filename in ./*.lua; do

  touch "./output/"$(basename "$filename")
  echo "Decompiling $filename"
  java -jar unluac.jar $filename >./output/$(basename "$filename")
done