Wie mache ich unter Linux so etwas?
echo 'hello world' > log.txt
Aber anstatt den Inhalt von log.txt zu überschreiben, wird er an das Ende von log.txt angehängt.
Wie mache ich unter Linux so etwas?
echo 'hello world' > log.txt
Aber anstatt den Inhalt von log.txt zu überschreiben, wird er an das Ende von log.txt angehängt.
Antworten:
Unter Linux können Sie auch den nützlichen HERE TAG für das mehrzeilige Anhängen verwenden:
cat >> log.txt << EOF
hello word 1
hello word 2
hello word 3
EOF
Linux-Shell ist mächtiger als Windows-Eingabeaufforderung! ;)