Skip to content

Instantly share code, notes, and snippets.

@snowch
Created April 4, 2020 20:35
Show Gist options
  • Save snowch/c527ac2809bec2153ed7188e7720ccab to your computer and use it in GitHub Desktop.
Save snowch/c527ac2809bec2153ed7188e7720ccab to your computer and use it in GitHub Desktop.
Check command exists or exit
## Check 1# ldapmodify installed or not
[[ -x $(command -v ldapmodify) ]] || { echo "Please Install Openldap-clients"; exit 1; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment