gpt4 book ai didi

linux - 使用命令行根据内容对文件进行排序

转载 作者:太空宇宙 更新时间:2023-11-04 09:06:40 26 4
gpt4 key购买 nike

我在一个文件夹中有一个文件数据库。我希望将包含 *C: 的文件分类到一个文件夹中,将包含 *c: 的文件分类到另一个文件夹中。这是如何实现的?**

我可以使用 *.krn 访问每个文件。

最佳答案

$ grep --help | grep with-matches
-l, --files-with-matches print only names of FILEs containing matches

现在的情况取决于有多少文件以及您对它们的名称的偏执程度。从最简单的

mv $(grep -l pattern files) target

最强大的

grep -l -Z pattern files | xargs -0 mv -t target-directory --

关于linux - 使用命令行根据内容对文件进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9708801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com