2015年5月8日 星期五

註冊spotify on ubuntu

下載了spotify卻需要每次開啓terminal輸入spotify來執行真的是很蠢
在電腦中搜尋了spotify,找到了spotify的資料夾,裏面有register.sh
有了前一篇的經驗,知道要用sh去執行
但是因爲一開terminal是在 home底下要先退兩層才看得到opt資料夾跟底下的spotify
執行register.sh後,順利把spotify加入工作列!!~

執行.sh

.sh 是linux 的shell script
本來想研究一下如何寫這東東,無奈網路上找到簡單的script貼上text editor存成.sh之後卻不知道如何執行
研究了一下有兩個方式,兩種方式都需要先把工作路徑轉換成.sh檔案所在位置
1.更改檔案屬性爲可執行
在terminal中輸入$chmod +x [filename]
在ubuntu中可以在檔案上面按右鍵properties>permission>execute
打勾allow execute file as program
2.直接以shell執行
$sh ./[filename]