There is a way to rsync a m3u playlist into a destination directory.
How can I process the list and number the output so it orders the files to match the playlist order?
For example the m3u:
/music/song-yellow.mp3
/music/song-red.mp3
/music/song-blue.mp3
would copy/rsync the playlist contents, renaming the files to:
/dest-path/01-song-yellow.mp3
/dest-path/02-song-red.mp3
/dest-path/03-song-blue.mp3
This is so I can build mixtape playlists and copy them for people.
Any advice appreciated.