Created
July 28, 2016 14:40
-
-
Save ponsfrilus/1becbbd2e15c01ed881e120b904926d3 to your computer and use it in GitHub Desktop.
Installing the Open Semantic Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Installing the Open Semantic Framework | |
# https://github.com/structureddynamics/Open-Semantic-Framework-Installer#installing-the-open-semantic-framework | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
hostname osf | |
mkdir -p /usr/share/osf-installer/ | |
cd /usr/share/osf-installer/ | |
wget https://raw.github.com/structureddynamics/Open-Semantic-Framework-Installer/3.4/install.sh | |
chmod +x install.sh | |
./install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment