Rechercher un texte dans tout les fichiers

Fermé
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 - 16 juil. 2012 à 18:33
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 16 juil. 2012 à 18:49
Bonjour,

Je voudrai chercher tout les fichiers ayant le mot 'realm' dans le fichier.

[root@localhost laurent]# find /etc/apache2/ -type f -exec grep -H 'realm' {} \;
find: '/etc/apache2/': Aucun fichier ou dossier de ce type
[root@localhost laurent]# 


Merci.

2 réponses

zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 418
16 juil. 2012 à 18:40
Salut,

grep -RH 'realm'  /etc/apache2
0
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 14
16 juil. 2012 à 18:47
Bonjour,

Désole mais ca marche pas.

[root@localhost laurent]# grep -RH 'realm'  /etc/apache2
grep: /etc/apache2: Aucun fichier ou dossier de ce type
[root@localhost laurent]# 


Merci.
0
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 6 418
16 juil. 2012 à 18:49
grep: /etc/apache2: Aucun fichier ou dossier de ce type
Il existe au moins ce répertoire ?

Que renvoie la commande :

ls -lh /etc | grep apache 
0