如何使用命令行创建批处理文件?

时间:2016-11-25 07:56:24

标签: batch-file cmd

请查看下面提到的需要转换为批处理文件的命令行。

C:\Program Files\TortoiseSVN\bin\
START /wait TortoiseProc.exe /command:update /path:"C:\AMG\trunk\AMG_AccountManager\AMC\Core" /closeonend:1

我不知道创建批处理文件也知道这对我来说很容易但很难。

我试过下面的

cmd -k C:\Program Files\TortoiseSVN\bin> START TortoiseProc.exe /command:update /path:"C:\SVN_TRUNK" /closeonend:1

1 个答案:

答案 0 :(得分:1)

试试这个:

cd C:\Program Files\TortoiseSVN\bin\
TortoiseProc.exe /command:update /path:"C:\AMG\trunk\AMG_AccountManager\AMC\Core" /closeonend:1

然后只需将文件命名为.bat(myScript.bat)并双击它。