Sort - Uniq - Wc - Tutoriel linux

Sort : Organisation de l'ordre des données

Uniq : Traitement des lignes dupliquées adjacentes

Wc : Impression du nombre de lignes, de mots et de caractères

Mise à jour : Debian 9.0

1 - Fichier test

$ cat test
champignon
arbre
arbre
banane
fleur
fruit
banane

2 - sort

$ sort test
arbre
arbre
banane
banane
champignon
fleur
fruit
$ sort -r test
fruit
fleur
champignon
banane
banane
arbre
arbre
$ sort -u test
arbre
banane
champignon
fleur
fruit

3 - uniq

$ uniq test 
champignon
arbre
banane
fleur
fruit
banane
$ uniq -d test
arbre
$ uniq -u test
champignon
banane
fleur
fruit
banane

4 - wc

$ wc test
7 7 49 test
$ wc -w test
7 test
$ wc -l test
7 test
$ wc -m test
49 test
$ cat test |wc -m
49