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.
有谁知道我如何从目录中的所有文件名中删除“@2x~ipad”字符串,这样一个名为:image@2x~ipad.png 的文件将被重命名为:image.png 我需要重命名一个目录中的所有文件某个目录
我可以从终端循环吗?任何想法?
使用 bash(在终端中):
for file in *2x~ipad.png; do mv $file ${file%%\@2x~ipad.png}.png done