uniq
Verified for current stable LTS
Uniq Command: Display Occurrences Sorted By Frequency
Use for display occurrences sorted by frequency with Uniq. Exact CLI syntax to display occurrences sorted by frequency using Uniq.
When to use this: Use for display occurrences sorted by frequency with Uniq.
Command Syntax
sort <path/to/file> | uniq -c | sort -nr sort <path/to/file> | uniq -c | sort -nr Live Command Builder
Final Command
sort <path/to/file> | uniq -c | sort -nr Command Breakdown
-c- Command Option
- Tool-specific option used by this command invocation.
-nr- Command Option
- Tool-specific option used by this command invocation.
FAQ
Purpose: Exact syntax to display occurrences sorted by frequency using Uniq.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Uniq Command: Compare First 10 Characters For Uniqueness
sort <path/to/file> | uniq -w 10 Uniq Command: Compare Text After First 5 Characters For Uniqueness sort <path/to/file> | uniq -s 5 Uniq Command: Display Each Line Once sort <path/to/file> | uniq Uniq Command: Display Number Of Occurrences Of Each Line sort <path/to/file> | uniq -c Uniq Command: Display Only Duplicate Lines sort <path/to/file> | uniq -d