Linux CLI - Pipes and Redirection
Identify the error in this pipeline command:
cat file.txt | grep 'error' | | sort
cat file.txt | grep 'error' | | sort
| | in a row, which is invalid syntax.cat file.txt is correct, grep 'error' is correct, and sort can be used with pipes.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions