其他分享
首页 > 其他分享> > 干干净净的grep

干干净净的grep

作者:互联网

用grep -rn "xxxx" ./   搜索。 有时候出现大量的 错误信息

主要有

1。Is a directory

2。no such file or directory

前者表示搜索子目录,后者表示文件找不到

解决办法前者-r后者-s

-r 参数:强制搜索子目录  --directories=recurse

-s参数:抑制出错信息 suppress error messages

 

标签:干干净净,前者,grep,子目录,搜索,directory,参数
来源: https://www.cnblogs.com/shinedream/p/12357986.html