I got a different output from this code 'ps faux | grep ssh'

In ssh protocol topic, I ran ps faux | grep ssh code and it gave a different output than the one given in the course

Hi @abdulbasitisdost,

the values in the first columns are expected to be different because the processes running have different PIDs (process IDs) each time you execute them.

The import thing here is the last column, which shows the sshd (SSH Server) is running.

Cheers,