surf-history-remove-duplicates 156 B

12345
  1. #!/bin/sh
  2. cat ~/.surf/history.txt > ~/.surf/history_temp.txt
  3. cat ~/.surf/history_temp.txt | sort | uniq >~/.surf/history.txt
  4. rm -f ~/.surf/history_temp.txt