zsh 怎么去转义?
写 git commit 的 message 的时候,遇到了 zsh 转义问题:
git add . && git commit -m "feature: 去掉无意义的 # !/usr/bin/python2.6"
报错:
╰─➤ git add . && git commit -m "feature: 去掉无意义的 # !/usr/bin/python2.6" 130 ↵zsh: event not found: /usr/bin/python2.6
哒咩!!!
如何解决?
回答:
Have try
$ git add . && git commit -m "feature: 去掉无意义的 # \!/usr/bin/python2.6"
以上是 zsh 怎么去转义? 的全部内容, 来源链接: utcz.com/p/938604.html