Circo Posted February 28, 2017 Share Posted February 28, 2017 View File Atari 7800 2D Cartridges Pack 2D Cartridge images for the Atari 7800 Availability - Site, FTP, Sync Submitter Circo Submitted 09/02/2010 Category Artwork Resolution Naming Convention No-Intro / HyperBase File Count 60 Link to comment Share on other sites More sharing options...
gimmievids88 Posted January 15, 2018 Share Posted January 15, 2018 I noticed the file names were different from the other atari 7800 roms and artwork I had. I hacked together this bash script to rename them (run from Media\Atari 7800\Images\) #!/bin/bash ls ./Artwork2|grep "\.png$" > art2 ls ./Artwork4|grep "\.png$" > art4 while read line do rootName=$(echo $line|sed 's/(.*//') if [[ $(cat art2|grep "^$rootName"|wc -l) -eq 1 ]]; then art2Name=$(cat art2|grep "^$rootName") mv "./Artwork4/$line" "./Artwork4/$art2Name" fi done < art4 Link to comment Share on other sites More sharing options...
Circo Posted January 17, 2018 Author Share Posted January 17, 2018 On 1/14/2018 at 10:31 PM, gimmievids88 said: I noticed the file names were different from the other atari 7800 roms and artwork I had. I hacked together this bash script to rename them (run from Media\Atari 7800\Images\) #!/bin/bash ls ./Artwork2|grep "\.png$" > art2 ls ./Artwork4|grep "\.png$" > art4 while read line do rootName=$(echo $line|sed 's/(.*//') if [[ $(cat art2|grep "^$rootName"|wc -l) -eq 1 ]]; then art2Name=$(cat art2|grep "^$rootName") mv "./Artwork4/$line" "./Artwork4/$art2Name" fi done < art4 If you download using our EM Sync app it will rename the files automatically to match your roms. Link to comment Share on other sites More sharing options...
divineblade7 Posted April 11, 2018 Share Posted April 11, 2018 Really? I didn’t know if would do that. Awesome. Loving this more and more. Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now