Skip to content

Instantly share code, notes, and snippets.

@allex
Last active August 29, 2015 14:03
Show Gist options
  • Save allex/7e3585ff55b75f5cfe7a to your computer and use it in GitHub Desktop.
Save allex/7e3585ff55b75f5cfe7a to your computer and use it in GitHub Desktop.
#!/bin/sh
# ================================================
# Description: %TITLE%
# GistID: 7e3585ff55b75f5cfe7a
# Last Modified: Sun Jul 13, 2014 12:12PM
# Author: Allex Wang (allex.wxn@gmail.com)
# ================================================
BASEDIR=`dirname $0`
BASEDIR=`(cd "$BASEDIR"; pwd)`
OSNAME="unknow"
case "`uname`" in
CYGWIN*) OSNAME="cygwin" ;;
Linux*) OSNAME="linux" ;;
Darwin*) OSNAME="darwin" ;;
esac
echo $BASEDIR;
echo $OSNAME;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment