12345678910111213141516171819202122 |
- @echo off
- REM ***************************************************************************
- REM @Contact : liuyuqi.gov@msn.cn
- REM @Time : 2024/07/22 14:44:35
- REM @Version : 1.0
- REM @License : (C)Copyright 2019 liuyuqi.
- REM @Desc : 引导输入一个路径,执行 auto_commit.exe
- REM %1 - ext_name
- REM %2 - characters replaced
- REM %3 - new characters
- REM ***************************************************************************
- setlocal
- set ext_name=%1
- set characters_replaced=%2
- set new_characters=%
- echo.
- echo "please input a path:"
- set /p path=
-
- call auto_commit.exe --path %path%
|