grep & sed 09 Novembre, 2021, 09:42:57 Bonjour,je poste une commande sed, dont le résultat est identique à une autre commande grep. C'est mignon !le fichier texteCode: [Sélectionner]thierry@toto-PC:~/bin> cat fichier_testune ligne totoune ligne tataune ligne totoune autre ligne totoet encore une autre:toto.les lignes avec totoavec sedCode: [Sélectionner]thierry@toto-PC:~/bin> sed -n '/toto/p' fichier_testune ligne totoune ligne totoune autre ligne totototo.avec grepCode: [Sélectionner]thierry@toto-PC:~/bin> grep toto fichier_testune ligne totoune ligne totoune autre ligne totototo.les lignes sans totoavec sedCode: [Sélectionner]thierry@toto-PC:~/bin> sed -n '/toto/!p' fichier_testune ligne tataet encore une autre:avec grepCode: [Sélectionner]thierry@toto-PC:~/bin> grep -v toto fichier_testune ligne tataet encore une autre: Citer la sélection