相比於windows的圖形方式,ubuntu的命令行顯得簡單不少,可是每次須要打開命令行去尋找路徑,打開應用程序仍是不方便。python
如下使用python寫了一個小腳本,方便啓動經常使用的工具,初學python,還請多指教,hehe。ubuntu
#coding=utf-8 #!/usr/bin/python # start.py import sys import os commandDict = { "idea" : "/home/cwz/tools/idea-IU-129.1525/bin/idea.sh", "eclipse":"/home/cwz/tools/eclipse/eclipse", "genymotion":"/home/cwz/VirtualBox\ VMs/genymotion/genymotion/genymotion" } # 判斷用戶是否輸入了參數 if len(sys.argv) <= 1 : print '請輸入要打開的程序簡稱' print 'python start.py -help for help' exit() # 判斷用戶輸入-help時,輸出全部可執行的命令 if sys.argv[1].startswith('-'): option = sys.argv[1][1:] if option == 'help' : print '------------------command dict start-----------------------' for command in commandDict: print command,':',commandDict.get(command) print '------------------command dict end-------------------------' # 打開應用程序 if commandDict.has_key(sys.argv[1]): os.system(commandDict.get(sys.argv[1]))