Skip to content

Instantly share code, notes, and snippets.

@ognjenm
Forked from ccarrasc/if_centos.sh
Created March 22, 2014 12:25
Show Gist options
  • Save ognjenm/9706396 to your computer and use it in GitHub Desktop.
Save ognjenm/9706396 to your computer and use it in GitHub Desktop.
#!/bin/bash
OS=`cat /etc/redhat-release | awk {'print $1}'`
if [ "$OS" != "CentOS" ]; then
echo -e "\e[1;31mThis script is intended for CentOS only\e[0m" 1>&2
#exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment