我的文件名是这样的:
Building+a+Container+for+Robust+Conversations.pdf
我想用mmv把它重命名如下:
Building_a_Container_for_Robust_Conversations.pdf
或者像这样:
BuildingaContainerforRobustConversations.pdf
发布于 2022-10-29 00:19:59
用"+“重命名所有文件为"_”
rename "s/+/_/" *用"+“重命名所有文件,使其没有任何空白
rename "s/+//" *https://unix.stackexchange.com/questions/634748
复制相似问题