Return status of command returning data into variable

182 Views Asked by At

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
1

There are 1 best solutions below

0
On BEST ANSWER

How about this:

PID=($(pidof bash))
if [[ ${#PID[@]} -gt 0 ]]; then
    echo "status OK"
else
    echo "status not OK"
fi