tail -F DATEI | while read L; do echo ${L} | grep MUSTER && \ (printf %s "${L}" | mail -s Treffer ms); done
Oder bash-spezifisch:
while read L; do echo ${L} | grep MUSTER && \ (printf %s "${L}" | mail -s Treffer ms); done < <(tail -F DATEI)
[ALT]"."
Durch mehrfach .
zurückblättern.
cat ~/.ssh/id_rsa.pub | ssh user@server "cat >> ~/.ssh/authorized_keys"