Skip to content

Instantly share code, notes, and snippets.

@askucher
Created August 25, 2015 11:17
Show Gist options
  • Select an option

  • Save askucher/682a32e4e1e5bf3cb414 to your computer and use it in GitHub Desktop.

Select an option

Save askucher/682a32e4e1e5bf3cb414 to your computer and use it in GitHub Desktop.
nixar.uniq

Операция

$ cat filename.txt | uniq -u 

###Удалить повторяющиеся строки из текста

Вход

1 line
2 line
3 line
4 line
5 line
1 line
2 line
3 line
4 line
5 line

Операция

$ cat filename.txt | uniq

Выход

1 line
2 line
3 line
4 line
5 line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment