linux grep see line not repeated code example
Example: grep ignore repeated lines
Just comgine "sort -u" with grep command to ignore repeated lines:
grep file_name | sort -u
Just comgine "sort -u" with grep command to ignore repeated lines:
grep file_name | sort -u