Linux CLI - Pipes and Redirection
What will be the output of the command:
ps aux | grep bash | wc -l if there are 3 bash processes running?ps aux | grep bash | wc -l if there are 3 bash processes running?ps aux lists all processes. grep bash filters lines containing 'bash'. This includes the 3 bash processes plus the grep command itself.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions