&amount
我需要在文件中查找,但它会抛出错误 -
[1] 25950
amount: Command not found.
Usage: grep [OPTION]... PATTERN [FILE]...
正确的搜索方法是什么?
答案1
将其放在引号中,例如
grep '&amount' file
因此&
shell 不会将其解释为将其置于grep
后台,然后尝试运行该命令amount
或者,您可以转义它,这样它对 shell 就不具有特殊含义:
grep \&amount file