# _execq() -- Execute command and silent output
# Usage: _execq command
#
# Example:
#
# if _execq "/bin/ps auwx"; then
# echo "ps OK";
# fi
#
_exeq() {
local cmd=$@;
$cmd &>/dev/null;
return $?;
}
# _execq() -- Execute command and silent output
# Usage: _execq command
#
# Example:
#
# if _execq "/bin/ps auwx"; then
# echo "ps OK";
# fi
#
_exeq() {
local cmd=$@;
$cmd &>/dev/null;
return $?;
}