mirror of
https://github.com/Kaisaan/lostkefin.git
synced 2025-06-18 16:45:40 -04:00
10 lines
293 B
Bash
10 lines
293 B
Bash
#!/bin/sh
|
|
|
|
cp "Battle of Olympus, The (U) [!].nes" Atlas.nes 2> /dev/null;
|
|
if [ "$?" != "0" ]; then
|
|
echo "ROM file \"Battle of Olympus, The (U) [!].nes\" not found; creating an empty file instead.";
|
|
cat /dev/null > Atlas.nes;
|
|
fi
|
|
|
|
perl ../../../abcde.pl -cm abcde::Atlas Atlas.nes Atlas.txt;
|