BASH substring 8月 23, 2012 ${this_string:3} 從第4個位置(開始為0)開始讀到結束 ${this_string:0:3} 從開始(位置為0)讀3個位置 ${this_string:0:-5} 從開始(位置為0)讀到倒數第5個位置結束 ${this_string:(-4)} 從右(最後)往前數4個位置 資料來源: Advanced Bash-Scripting Guide 閱讀完整內容