Re: unable to remove duplicate lines from the attached file

2008-06-13 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Joseph Butler on 6/13/2008 6:37 AM: | | Hello Tech Support: We're not really paid tech support, just volunteers... | For some reason, I'm unable to remove duplicate lines using the uniq utility. Reread 'uniq --help', particularly this

Re: unable to remove duplicate lines from the attached file

2008-06-13 Thread Pádraig Brady
Joseph Butler wrote: > > Hello Tech Support: > > For some reason, I'm unable to remove duplicate lines using the uniq utility. > > Any solution to this issue would be appreciated. Trailing whitespace: sed 's/[ \r]*$//' test03 | sort | uniq -d ___ B