于 2011-12-30 12:04, lina 写道:
Hi,

I don't know how to find one file out,

one file contains some numbers, like

7.9 2.4 4.2 12.2 and etc

I can't remember the file name. I tried:

$ grep -e "7.9" -e "2.4" -e "4.2" -e "12.2" */*

$ grep -e "7.9" -e "2.4" -e "4.2" -e "12.2" */*/*

not work,

Thanks with best regards,


Maybe you can try
$ grep -lR "7.9\|2.4\|4.2\|12.2" /pathname


--
To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to