Skip to content

Instantly share code, notes, and snippets.

@simbalinux
Last active June 14, 2018 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simbalinux/baf1ee56e059ed06a3150ffcc13a84e5 to your computer and use it in GitHub Desktop.
Save simbalinux/baf1ee56e059ed06a3150ffcc13a84e5 to your computer and use it in GitHub Desktop.
check_if_installed
#!/usr/bin/bash
if [ $(command -v httpd) ]; then echo 'installed'; else echo 'not installed'; fi
# or
if [ $(which httpd) ]; then echo 'installed'; else echo 'not installed'; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment