Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在查看服务器是否具有我正在寻找的文件名。我在文本文件上有文件名列表,并想查看这些文件是否存在于服务器中。有没有一种方法可以在 python 或 linux bash shell 工具中做到这一点
假设文件将名称保存为每行一个,则以下内容应该有效:
find / -type f | grep -f **filenames**
如果您的机器速度慢或文件很多,请等待很长一段时间才能完成。
如果 locate (updatedb) 可用/正在运行,则以下可能会更快。
locate -r . | grep -f **filenames**