xxxxxxxxxx
#!/bin/bash
# PID TO GET
pid_to_check=1234567890123456789012345678901234
if kill -0 "$pid_to_check" 2>/dev/null; then
echo "Process with PID $pid_to_check is running."
else
echo "Process with PID $pid_to_check is not running."
fi