4 ms·
find . -name "file-wildcard" -exec "string" {} ";" -print is something I use a lot - plus xargs sometimes
by globalpanic 14y ago
find . -name "file-wildcard" -exec "string" {} ";" -print
is something I use a lot - plus xargs sometimes
- martinced 14y agoI use variations on "find" so often that I've created several little commands "fij" (find in any java source), "fit" (find in any text / org file), "fix" (find in any XML file) etc. which I use all the time
- prakashk 14y agoYou might want try `ack` then. (http://betterthangrep.com/ http://betterthangrep.com/). On Ubuntu/Debian systems, it is packaged as `ack-grep`.