grep ignore les lignes répétées

Just comgine "sort -u" with grep command to ignore repeated lines:
grep file_name | sort -u
Armandres