05/05/202010/21/2021 by bioinfocore Unix remove repeated rows Unix Unix One simple line to remove repeated rows from a txt file: awk '!seen[$0]++' fileIn.txt > fileOut.txt