Skip to content

Instantly share code, notes, and snippets.

@MarkZhangTW
Created June 24, 2021 02:58
Show Gist options
  • Save MarkZhangTW/b44f3a84899160dadf15a6b70cddbc57 to your computer and use it in GitHub Desktop.
Save MarkZhangTW/b44f3a84899160dadf15a6b70cddbc57 to your computer and use it in GitHub Desktop.
Sort & Unique in Linux
#!/usr/bin/env bash
cat $1 | sort | uniq >> $1.sorted
mv $1.sorted $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment