I have some pid and I want to know the process names for every parent all the way up to init.
For example when I type this command that i'm looking for I want to see something like "init───sshd───bash───mypidprocess"
By default pstree prints out the opposite, starting with the processname of your given pid it goes down all the way to the last child.
How would I tell pstree to recursively print out the parents of a pid?