That's were 'ctrl' + 'r' comes into play.
Figure it out once and your history never forgets:-)
And if it does beefing up 'export HISTSIZE=5000' might help.
mf
Eelco Hillenius schrieb:
And the best thing about these unix commands is that they are so
obvious :)
Eelco
On 6/21/07, Martin Funk <[EMAIL PROTECTED]> wrote:
Martijn Dashorst schrieb:
> The benefits of unix:
>
> find jdk-1.4/wicket -name "*.js" | xargs grep -E "rag|rop"
>
> delivers
> jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/wicket-ajax.js
>
>
Martijn please don't hit me for this, or as a former college of mine
always says: "grep is one of the most underestimated unix commands"
grep -r --include='*.js' -E 'rag|rop' jdk-1.4/wicket
mf