Suchen in Linux: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „<pre> sudo apt-get install ack-grep </pre>“)
 
Zeile 1: Zeile 1:
<pre>
<pre>
sudo apt-get install ack-grep
sudo apt-get install ack-grep
ack-grep -i "suchbegriff"
</pre>
<pre>
find . -type f -print0 | xargs -0 grep -i SEARCHSTRING
</pre>
</pre>

Version vom 22. März 2016, 01:47 Uhr

sudo apt-get install ack-grep
ack-grep -i "suchbegriff"
find . -type f -print0 | xargs -0 grep -i SEARCHSTRING