看板
[ Linux ]
討論串[問題] 請問一個bash script的問題
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
我有一串指令想要用 alias 簡化. 指令的順序會影響結果. 指令如下. command arg_1 --message "123" --file /tmp/123.txt arg_2. 其中 arg_1 , arg_2 都是固定的. 但是 /tmp/123.txt 這個檔案非必要條件. comm
(還有114個字)
內容預覽:
直覺上會使用 function 解決,如果一定要用 alias 處理的話,可以用 alias 包裝 function 使用如下:. alias abc='F(){ test -n "$2" && echo "--message $1 --file $2" || echo "--message $1"
(還有153個字)
首頁
上一頁
1
下一頁
尾頁