Datei nach vorgegebenen Inhalten durchsuchen:
<code>
find . -name "*.php" -print -exec grep 'Suchtext' \{\} \;
</code>
Statt \{\} und \; kann man auch schreiben: "{}" und ";"
Coll, weil nur Ergebnisse:
<code>
find / -type f -exec grep -H 'text-to-find-here' {} \;
</code>
grep alleine:
This will only search throu
zur Umleitung von Ein- und Ausgaben zusammen:
<code>< datei
Standardeingabe, Lesen aus »datei«</code>
<code>> datei
Standardausgabe, Schreiben in »datei«</code>
<code>2> datei
Standardfehlerausgabe, Schreiben
nach bestimmten Zeichen splitten/cutten /wie explode in PHP) ======
Quelle((http://www.linuxforen.de/forums/archive/index.php/t-223160.html))
Hallo!
<code>while
read line
do
echo -e "$line"
done < ./users.csv
</code>
Mit diesem Bash Skript lese ich eine CSV ein.
<c
====== IF-Operator ======
<code bash>
#!/bin/bash
X=""
if [ -n "$X" ]; then # -n tests to see if t... not the empty string"
else
echo "empty!"
fi
</code>
http://pegasus.rutgers.edu/~elflord/unix/bash-t... ue if file1 and file2 have the same device and inode numbers.
-o optname
True if shell option optna
ange and restored after the read. The following code will read a password into the variable secret:
<code bash>
stty_orig=`stty -g`
stty -echo
read secret
stty $stty_orig
</code>
x die Kommandozeile auch die Kontrolle über laufende Tasks, wenn Sie das wollen.
Hängen Sie ein "&" ... + a]: zum Start der Zeile
* [Strg + e]: zum Ende der Zeile
* [Alt + b]: springe ein Wort rückwär... n:
*[Strg + k]: ausschneiden bis zum Zeilenende
*[Strg + u]: ausschneiden bis zum Zeilenanfang