check shell command success

Code Example - check shell command success

                
                        some_command
if [ $? -eq 0 ]; then
    echo OK
else
    echo FAIL
fi