运行带有小括号'()'的命令如下
rm -f index.php(1)
却得到下面的一句话:
bash: syntax error near unexpected token `('
然后我谷歌了一下,发现linux5.0之后,是不能带有括号的,这个时候就需要转译了。转译的方法有下面两种:
rm -f index.php"(1)"
rm -f index.php\(1\)
原文:https://blog.csdn.net/wangchengming1/article/details/76946412
版权声明:本文为博主原创文章,转载请附上博文链接!