“Bash Удалить дубликаты линий из файла” Ответ

Bash Удалить дубликаты линий из файла

# Basic syntax:
sort input_file | uniq --unique
# Sort the file first because uniq requires a sorted file to work. Uniq
# then eliminates all duplicated lines in the file, keeping one instance
# of each duplicated line

# Note, this doesn't return only non-duplicated lines. It returns
# unique instances of all lines, whether or not they are duplicated

# Note, if you want to return only one instance of all lines but see
# the number of repetitions for each line, run:
sort input_file | uniq -c
Charles-Alexandre Roy

Удаление дубликата ввода из файла в командной строке

sort -u .txt
Sparkling Gal

Ответы похожие на “Bash Удалить дубликаты линий из файла”

Вопросы похожие на “Bash Удалить дубликаты линий из файла”

Больше похожих ответов на “Bash Удалить дубликаты линий из файла” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования