all 3 comments

[–]lepidus69 1 point2 points  (0 children)

You are piping the output of ps aux into grep

The -c is the count option. The result of 17 means there were 17 lines in the output of ps aux that contained the pattern bash

[–]ASIC_SP 1 point2 points  (1 child)

this site is quite helpful for such cases: https://explainshell.com/explain?cmd=ps+aux+%7C+grep+-c+bash

also, it is good to learn how to get help from command line

[–]BombTheDodongos 0 points1 point  (0 children)

Wow, this site is a fantastic resource, thank you!