linux系统批量移动奇数文件
时间: 2023-10-22 07:05:23 浏览: 108
批量移动文件
可以使用以下命令批量移动奇数文件:
```bash
find /path/to/directory -type f -name "*[13579]" -exec mv {} /path/to/destination \;
```
该命令会在指定目录中查找所有奇数文件(文件名中包含1、3、5、7、9),并将它们移动到指定目的地。
请注意,上述命令中的“/path/to/directory”和“/path/to/destination”需要替换为实际的目录路径。
阅读全文