sort unique lines
๐ BashSorts and deduplicates lines from a file or standard input.
Bash
if [ $# -ge 1 ]; then sort -u "$1"
else sort -u
fi
Comments
No comments yet. Start the discussion.