I noticed a process taking full CPU on my linux server, of which the COMMAND column from top -c is -bash.

cat /proc/<pid>/cmdline shows -bash too.

What does the leading dash mean?

More info: I don't know if it's relevant, /proc/<pid>/exe -> /bin/bash (deleted)

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

The dash is only relevant to bash (and other shells). It only means that the shell is a login shell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.