Quelle commande écrit le nombre de lignes ERROR de system.log dans task1_output.txt ?
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
grep -c 'ERROR' system.log > task1_output.txt