Correction et résumé sur outils de manipulation de texte
1 2 3 4 5 6 7 8 9 10 | § Recherche dans /etc/passwd de: § mon login : kyle> grep $LOGNAME /etc/passwd kyle:!:201:200:Alberto XSTRA:/home/xstra:/bin/bash § Nombre de lignes contenant MICHEL ou michel kyle> grep –i MICHEL /etc/passwd | wc –l § Nombre de lignes contenant /home/ kyle> grep –c '/home/' /etc/passwd 27 kyle> |