Last active
February 9, 2023 18:06
-
-
Save mikeyjk/5dca61262cc1ae04a49c2f4834ed95d2 to your computer and use it in GitHub Desktop.
generate m3u's for backups of PS1 games you own the original hardware for, that are in .7z or .cue format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Usage: ./generate_psx_m3u.sh | |
# small tweak on: https://github.com/danyboy666/Generate-PSX-m3u-playlist/blob/master/generate_psx_m3u.sh | |
for rom in *{.rar,.chd,.zip,.pbp,.PBP,.7z,.cue}; do | |
if [[ $rom =~ ^.*[dD]is[ckCK].*$ ]]; then | |
playlistName=$(echo "$rom" | sed 's/.rar//g;s/.chd//g;s/.zip//g;s/.pbp//g;s/.PBP//g;s/.7z//g;s/.cue//g;s/\s[\(][dD]is[ckCK]\s[0-9]\{1,2\})//g') | |
echo -e "rom: $rom" | |
echo -e "playlist: $playlistName" | |
echo "$rom" >> "$playlistName"".m3u" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what I was going for:
(VR-Disc)
,(v1.1)
e.g. output
I'm happy enough with how that's behaving, although I'm open to convincing there's a better way (perhaps a per game behaviour)