update everything-factory script

This commit is contained in:
U-DESKTOP-3VIS1T9\junguler 2023-05-10 16:32:08 +03:30
parent d67e7d19f3
commit 4c84d7f85c

View File

@ -19,3 +19,13 @@ cat everything-lite.m3u | shuf > randomized.m3u
# sort the lite file
cat everything-lite.m3u | sort > sorted.m3u
# for everything-repo streams
# copy all of the everything-full files to a folder and change their names to avoid substitution
for i in *.m3u ; do cat $i >> every.txt ; done
# remove duplicates
cat every.txt | awk '!seen[$0]++' > every.m3u
# remove stream info
cat every.m3u | sed -n '/^#/!p' | sort > lite.m3u