sublime text 202 fedora 19 bash install script.

#!/bin/sh  # Adapted from https://gist.github.com/henriquemoody/3288681  # This script assumes you have unzipped the contents of the # Sublime 2 distribution to someplace and will set it below # I personally like to keep this install very mobile  # Set these values INSTALL="/home/agd/Development/sublime/sublime" VERSION="2.0.1" EXECUTABLE="sublime_text"  # Desktop Shortcut SHORTCUT="[Desktop Entry] Name=Sublime Text 2 Comment=Edit text files Exec=$INSTALL/$VERSION/$EXECUTABLE Icon=$INSTALL/$VERSION/Icon/128x128/sublime_text.png Terminal=false Type=Application Encoding=UTF-8 Categories=Utility;TextEditor;"  # Command Line COMMAND="#/bin/bash if [ \$# -gt 1 ] ; then         if [ \${1} == \"--help\" ] ; then                 $INSTALL/$VERSION/$EXECUTABLE --help         fi else         $INSTALL/$VERSION/$EXECUTABLE \$@ > /dev/null 2>&1 & fi"   echo "${COMMAND}" > "/usr/local/bin/subl" chmod +x "/usr/local/bin/subl" echo "${SHORTCUT}" > "/usr/share/applications/sublime-text-2.desktop"  

파운더리 마리와 마야를 페도라 19 리눅스 가상머신에서 돌리는데 ... 큰 무리 없다.
파이썬으로 마야용 툴 스크립트 개발 비기닝 단계 위해 서브라임텍스트2.0.2 설치.
서브라임 텍스트 에서 바로 마야 리모트가 연결 되기 되기 때문에 기존 파이썬 2.7 에서 제공하는 IDE 는 페스.


 Game Developer Leegoon copyright all right reserved since 2010.

Comments