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

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



