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.
我似乎找不到在我的专用服务器上执行此操作的方法。
我有一个巨大的文件夹目录,其中一些包含 3 个破折号,例如“---”,我需要找到并用一个破折号替换。
有没有一种简单的方法可以直接在我的服务器上进行查找和替换?我真的不想下载所有文件夹并在我的桌面上完成并重新上传它们。
你可以这样做:
find ./ -name '*' -exec rename 's/---/-/g' {} \;
*未经测试
源代码