¿Qué comando escribe el número de líneas ERROR de system.log en task1_output.txt?
ERROR
system.log
task1_output.txt
grep -c 'ERROR' system.log > task1_output.txt
grep -vc 'ERROR' system.log > task1_output.txt
grep -c task1_output.txt > system.log
grep 'ERROR' system.log > task1_output.txt