#!/bin/bash for cmd in "$@"; do if ! command -v "$cmd" &>/dev/null; then return 0 fi done return 1