最近给 Kali2 安装了 oh-my-zsh 后,在粘贴 URL 的时候,会自动转义"? = &"等特殊字符,我不知道哪里出了问题。单纯切换到 zsh 下是没有问题的。在使用 sqlmap 的时候很头疼……
自问自答:
http://stackoverflow.com/questions/25614613/how-to-disable-autocomplete-with-backslak-in-zsh
把 /root/.oh-my-zsh/lib/misc.zsh 文件中的第一段 if 注释掉 OK 啦
if [[ $ZSH_VERSION != 5.1.1 ]]; then
for d in $fpath; do
if [[ -e "$d/url-quote-magic" ]]; then
if is-at-least 5.1; then
autoload -Uz bracketed-paste-magic
zle -N bracketed-paste bracketed-paste-magic
fi
autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic
break
fi
done
#fi
另外注释掉这段之后,粘贴长文本的速度也快了许多。