I need to know if a process has any children process, so I use the command
pgrep -P <ProcessID>
Then I get all the children processes. But when I use the command with an empty value and double quotation marks like that:
pgrep -P ""
As a response I get the numbers: 1,2
What is the meaning of that result?