Skip to content

Latest commit

 

History

History
1 lines (1 loc) · 126 Bytes

uniq-wo-sort.md

File metadata and controls

1 lines (1 loc) · 126 Bytes

While you can use | sort -u to get unique lines from an output, you may use | awk '!x[$0]++' for the same without sorting.