Command-Line

Zsh:刪除# - 粘貼到終端時的註釋?

  • January 13, 2019

我使用clipmenu 選擇一些東西粘貼到執行zsh 作為shell 的終端中。

問題是,當我粘貼一個 shell 函式時,zsh 會回顯錯誤,其中包含一些 # 用於該函式內的註釋。我必須手動返回並清除所有包含#的行。

系統:archlinux/zsh/clipmenu

編輯:功能範例:

test() {
   # must remove this line manually after paste into zsh's shell
   <do something>
}

也許你只需要setopt interactivecomments

引用自:https://unix.stackexchange.com/questions/490101