在谷歌快速搜索后,我找到了这个链接:Mercurial: simple way to revert .orig files? ,在注释中使用以下代码行:
for /f %i in ('dir /s /b *.orig') do @copy %i %~dpni
在 powershell 中,我尝试运行它,但出现以下错误:Missing opening ( after kyeword for
.
powershell 不是运行此代码的正确方法还是语法不正确?
我正在尝试将我的 orig 文件恢复到其原始版本(摆脱 .orig 扩展名)。我正在使用 Windows,所以 BASH 不是一个简单的选择。