Bash/Get ancestry

From Attie's Wiki
(Redirected from Get ancestry)
Jump to: navigation, search

This simple one-liner will output your full ancestry, starting from you and going up to init. If you don't have permission to read a symlink, a '?' will be shown.

PID=$$; until [ $PID -eq 0 ]; do BIN=$(readlink /proc/$PID/exe || echo "?"); echo "$PID: $BIN"; PID=$(ps -ef | awk "\$2==$PID {print \$3}"); done
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox