Welcher Befehl schreibt die Anzahl der ERROR-Zeilen in system.log nach task1_output.txt?
ERROR
system.log
task1_output.txt
grep -c task1_output.txt > system.log
grep 'ERROR' system.log > task1_output.txt
grep -vc 'ERROR' system.log > task1_output.txt
grep -c 'ERROR' system.log > task1_output.txt