5,710
edits
Changes
no edit summary
</pre>
= finding things with grep = == finding files recursively with ls and grep ==
* find this filename in a recursive search and show previous 30 lines of result:
<pre>ls -laR . | grep -b30 "scale_signal.o" </pre>
== finding text within files recursively with grep ==
<pre>grep -Hrn 'HTS_Pauses' meghan_festival/</pre>
= forwarding localhost mysql to a remote machine =