Unverified Commit ce388e37 authored by Joakim Roubert's avatar Joakim Roubert Committed by GitHub

Update install.sh

parent 2b5eff72
...@@ -456,7 +456,7 @@ pstree() { ...@@ -456,7 +456,7 @@ pstree() {
for pid in $@; do for pid in $@; do
echo $pid echo $pid
# Find and show pstree for child processes of $pid # Find and show pstree for child processes of $pid
$(ps -o ppid= -o pid=) | while read parent child; do ps -o ppid= -o pid= | while read parent child; do
[ $parent -ne $pid ] || pstree $child [ $parent -ne $pid ] || pstree $child
done done
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment