URL: https://linuxfr.org/forums/programmation-shell/posts/comment-trier-le-contenu-dun-fichier-texte-3-lignes-par-3-lignes Title: Comment trier le contenu d'un fichier texte 3 lignes par 3 ligne Authors: bumbolol Date: 2011年02月20日T19:17:39+01:00 Tags: sed Score: 0 Si je veux trier un fichier texte ligne par ligne, un appel à 'sort' et le problème est réglé. Mais comment faire pour en trier un 3 lignes par 3 lignes ? Par exemple, avant tri: c b a a b c et après tri: a b c c b a Merci d'avance du coup de main :D