Qual comando grava em task1_output.txt o número de linhas ERROR em system.log?
task1_output.txt
ERROR
system.log
grep -c task1_output.txt > system.log
grep 'ERROR' system.log > task1_output.txt
grep -c 'ERROR' system.log > task1_output.txt
grep -vc 'ERROR' system.log > task1_output.txt