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.
我的 Ubuntu 机器上有一个文件夹,里面有大量图像。
我如何找到所有具有特定结尾的文件,例如_some_ending.tif?
_some_ending.tif
仅在当前目录中:
ls *_some_ending.tif
递归目录:
find . -name "*_some_ending.tif"