Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Search a bunch of files
Message
 
 
À
11/05/2007 05:45:12
Information générale
Forum:
Windows
Catégorie:
Informatique en général
Divers
Thread ID:
01224468
Message ID:
01224855
Vues:
15
>Anyone know of a readily-available tool that can search a bunch of files for a specific string?
>

You could always go low-tech. Open a DOS window:

for %a in (*.prg) do find /n "Use" %a

Substitute whatever string you're looking for in place of "Use", above. Redirect it to a file if the list is long:

for %a in (*.prg) do find /n "Use" %a >> output.txt

(Sometimes the old dog's tricks are just fine. <g>)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform