how can I get status from command, which is assigned into variable?
For example:
#! /bin/bash
### GET PID
GETPID=$(ps aux | grep "bash" | grep -v "grep" | awk '{print $2 }')
if [ "$?" = "0" ]; then
echo "status OK"
else
echo "status NOT OK"
fi
How about this: