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.
在 Linux 中,是否有任何命令可以将日期之前创建的所有子目录移动到另一个目录?我有一个包含 3000 多个子目录和子子目录的大目录。有什么快速命令吗?
您可以使用find该atime选项
find
atime
find * -type d -atime +number_of_days -exec mv {} /path/to/new_dir \;
有关更多信息,请查看手册页find