Removing name duplicates

This commit is contained in:
Dessalines 2018-11-15 12:04:50 -07:00
parent b34953b15d
commit 571219c60e
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ sed -i '1d' $torrents_csv
# Remove dups # Remove dups
sort -u -t';' -k1,1 -o $torrents_csv $torrents_csv sort -u -t';' -k1,1 -o $torrents_csv $torrents_csv
sort -u -t';' -k2,2 -o $torrents_csv $torrents_csv
# Sort by seeders desc # Sort by seeders desc
sort --field-separator=';' --key=5 -nr -o $torrents_csv $torrents_csv sort --field-separator=';' --key=5 -nr -o $torrents_csv $torrents_csv