mirror of
https://github.com/2004content/rarbg.git
synced 2025-03-22 16:55:22 +00:00
9 lines
345 B
Bash
Executable file
9 lines
345 B
Bash
Executable file
# Sorts magnet links alphabetically
|
|
# Starts with the torrent name, not the first character of the line
|
|
# Also filters unique lines
|
|
|
|
sort -u moviesother.txt -u -k 1.65 -o moviesother.txt
|
|
sort -u moviesrarbg.txt -u -k 1.65 -o moviesrarbg.txt
|
|
sort -u showsother.txt -u -k 1.65 -o showsother.txt
|
|
sort -u showsrarbg.txt -u -k 1.65 -o showsrarbg.txt
|