Bash common

From EggeWiki
Revision as of 09:59, 16 March 2010 by Brianegge (talk | contribs) (Created page with '<geshi lang="bash"> ffind () { find . -name ".svn" -prune -o -name "CVS" -prune -o -exec grep -H --color=auto "$@" {} \; } </geshi> Category:Bash')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<geshi lang="bash"> ffind () {

   find . -name ".svn" -prune -o -name "CVS" -prune -o -exec grep -H --color=auto "$@" {} \;

} </geshi>