kojiro 1188753423 learn uniq is a utility for removing or reporting repeated lines. uniq will only work effectively with sorted input. For an less order-sensitive alternative, try Ed Morton's awk '!s[$0]++'. kojiro 1188753635 forget kojiro 1188753678 learn uniq is a utility for removing or reporting repeated lines. uniq will only work effectively with sorted input (sort -u). Ed Morton's awk '!s[$0]++' is an order-insensitive alternative. kojiro 1210959272 forget kojiro 1210959310 learn uniq is a utility for removing or reporting repeated lines. uniq will only work effectively with sorted input (sort -u). awk '!s[$0]++' is an order-insensitive alternative. yitz_ 1217610133 forget yitz_ 1217610154 learn uniq is a utility for removing or reporting repeated lines. uniq will only work effectively with sorted input (sort | uniq). awk '!s[$0]++' is an order-insensitive alternative. yitz_ 1326254807 forget yitz_ 1326254831 learn uniq is a utility for removing or reporting repeated lines. uniq will only work effectively with sorted input (sort | uniq). Alternatively, use sort -u. awk '!s[$0]++' is an order-insensitive alternative. yitz_ 1398726899 forget yitz_ 1398726929 learn is a utility for removing or reporting repeated lines. uniq will only work for showing unique lines when used with sorted input (sort | uniq). Alternatively, use sort -u. awk '!s[$0]++' is an order-insensitive alternative.