我正在尝试为合并后的文件内的 Git 冲突创建 grep 的 bash 别名。通常在使用 bash shell 的命令行上,我运行grep -nr '<<<<<<<'
,其中需要单引号来转义特殊字符。
我的~/.bashrc
文件目前有以下内容:
alias confs="grep -nr \'<<<<<<<\'"
但是,运行命令时的输出confs
是
bash: syntax error near unexpected token `<<<'.
我该怎么做?谢谢
答案1
解决方案非常简单,这要归功于schrodigerscatcuriosity
。实现方法是:alias confs="grep -nr '<<<<<<<'"
。不需要额外的转义字符