Skip to content

Instantly share code, notes, and snippets.

@monry
Last active September 21, 2018 12:49
Show Gist options
  • Save monry/b2ce264a8b1d440bd0a4bd36990f4ce8 to your computer and use it in GitHub Desktop.
Save monry/b2ce264a8b1d440bd0a4bd36990f4ce8 to your computer and use it in GitHub Desktop.
カレントディレクトリのプロジェクトを Unity で開く
#!/bin/sh
UNITY_VERSION=""
if [ ! -z $1 ]; then
UNITY_VERSION=$1
fi
open -n /Applications/Unity${UNITY_VERSION}/Unity.app --args -projectPath `pwd`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment