system.log의 ERROR 줄 수를 task1_output.txt에 기록하는 명령은 무엇인가요?
system.log
ERROR
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