doublons d'un grep à virer - Multimédia - Linux et OS Alternatifs
MarshPosté le 31-07-2002 à 11:10:11
salut,
j'ai grepé un log d'erreur de développement avec ceci: more errors | grep Entity | cut -d: -f4- | sort
j'ai bien ce qu'il me faut par contre j'ai énormément de doublons...
exemple (léger): Entity 'sup2' not defined Entity 'sup2' not defined Entity 'sup2' not defined Entity 'sup2' not defined Entity 'sup2' not defined Entity 'ucirc' not defined Entity 'ucirc' not defined Entity 'ucirc' not defined
et je voudrais virer ces doublons pour avoir: Entity 'sup2' not defined Entity 'ucirc' not defined
je n'ai pas trouvé d'options dans ce sens pour 'sort'... une idée ?
--------------- As the plane took off, the pilot turned to the co-pilot and said, “Have you ever flown solo?” Co-pilot: No. Typically I fly much higher than this.
-u en effet, j'avais mal compris le man. | uniq fonctionne tout aussi bien.
merci
--------------- As the plane took off, the pilot turned to the co-pilot and said, “Have you ever flown solo?” Co-pilot: No. Typically I fly much higher than this.
Marsh Posté le 31-07-2002 à 11:10:11
salut,
j'ai grepé un log d'erreur de développement avec ceci:
more errors | grep Entity | cut -d: -f4- | sort
j'ai bien ce qu'il me faut par contre j'ai énormément de doublons...
exemple (léger):
Entity 'sup2' not defined
Entity 'sup2' not defined
Entity 'sup2' not defined
Entity 'sup2' not defined
Entity 'sup2' not defined
Entity 'ucirc' not defined
Entity 'ucirc' not defined
Entity 'ucirc' not defined
et je voudrais virer ces doublons pour avoir:
Entity 'sup2' not defined
Entity 'ucirc' not defined
je n'ai pas trouvé d'options dans ce sens pour 'sort'... une idée ?
---------------
As the plane took off, the pilot turned to the co-pilot and said, “Have you ever flown solo?” Co-pilot: No. Typically I fly much higher than this.