Tcsh
tcsh:序列命令
如何從前 2 個 cmd 的輸出中更改目錄?其中
bash
會是這樣的:cd $(whereis evince | awk '{print $2}')
我需要這個
tcsh
只是找不到例子。閱讀人沒有幫助。謝謝你。
tcsh
使用反引號:cd `whereis evince | awk '{print $2}'`