update everything-full files to add filename as a playlist title

This commit is contained in:
U-DESKTOP-3VIS1T9\junguler 2023-04-18 15:18:28 +03:30
parent 3205d0412e
commit e9c67ce5bb
9 changed files with 11679 additions and 3084 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5,8 +5,11 @@
# remove old cruddy everything files
rm everything-full.m3u everything-lite.m3u randomized.m3u sorted.m3u
# create everything-full file by copying everything except duplicates
cat $( ls -v ) | awk '!seen[$0]++' > everything-full.m3u
# insert filenames as playlist title and put them in a big file with duplicates
for i in $(ls -v) ; do echo '#PLAYLIST: '$i | cat - $i | sed 's/#EXTM3U//g' | awk NF >> everything-full.txt ; done
# add #EXTM3U to the first line and change the text file to a m3u file format
cat everything-full.txt | awk '!seen[$0]++' | sed '1s/^/#EXTM3U\n/' > everything-full.m3u
# read the full file and remove all extra stuff, we just need the links
cat everything-full.m3u | sed -n '/^#/!p' > everything-lite.m3u