grep -nr yourString* .
The dot at the end searches the current directory, and
-r
searches sub-directories.grep -nr MobileAppSer* .
(Will search for MobileAppServlet.java
or .class
or .txt
; MobileAppASer*.*
is another way to do the same thing.)
No comments:
Post a Comment