#! /usr/bin/env bash
#
#  get-childs <pid> 

echo 0
ps ax -o pid,ppid | awk -v pid=$1 '$2==pid {print $1}'
echo ~~~



