Execute isto:
while kill -0 <PID>; do sleep 1; done; echo "Process finished at $(date +"%F %T")."
Ou você pode fazer um script bash. wait-for-death.sh
:
#!/bin/bash
if ! kill -0 ; then
echo "Process doesn't exist."
exit 1
fi
while kill -0 ; do
sleep 1
done
echo "Process finished at $(date +"%F %T")."
Em seguida, conceda a permissão de execução:
chmod +x wait-for-death.sh
e executá-lo passando o processo 'PID:
./wait-for-death.sh <PID>