Skip to content

Instantly share code, notes, and snippets.

@IsoLinearCHiP
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save IsoLinearCHiP/1295a5a7885d86dbd03a to your computer and use it in GitHub Desktop.

Select an option

Save IsoLinearCHiP/1295a5a7885d86dbd03a to your computer and use it in GitHub Desktop.
Bash, get ppid
ppid() { { if [ -z $1 ]; then read -p "PID: " pid; fi; ps -p ${pid:-$$} -o ppid= ;} | awk '{print $1}' ;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment