这些冒号文件都不需要在Windows机器上,所以我需要快速解决方案来重命名或重命名它们.
你们都推荐什么? (我在Linux中假设类似bash / perl / python脚本.我们在Windows机器上没有PowerShell.)
find /path/to/files -name '*:*' -print
删除有问题的文件.
find /path/to/files -name '*:*' -exec rm {} +
使用下划线重命名有问题的文件.
find /path/to/files -name '*:*' -exec rename ':' '_' {} +