Bash[One Liner]-Find实用程序:查找文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash[One Liner]-Find实用程序:查找文件相关的知识,希望对你有一定的参考价值。
find files using "find" and piping the output to rm using xargs; 1st argument to find is the search directory (command substituted in this example by `pwd`)
find `pwd` -name "<pattern>" | xargs rm
以上是关于Bash[One Liner]-Find实用程序:查找文件的主要内容,如果未能解决你的问题,请参考以下文章