|
First, I guess you meant ps -ef | grep ora_ , not os_
Anyway, the second line comes up because when you run the ps -ef | grep command, you create a process, so your command simply is picking itself up among the list of processes running.
You grep for a string of text, not a type of process.
|