1

我想要一个前缀来运行命令,但略有不同,例如

openlink (opens the link)

然后我希望能够通过使用前缀说打开它 2 次,例如

openlink *2 (opens the link twice)

我希望数字与打开的时间相对应,例如。openlink *7 将打开链接 7 次。

4

1 回答 1

1

将您的命令 ( ) 包装在一个用于跟踪计数openlink的批处理文件中怎么样?set /A

@echo off
SET /A CNT=%1
:l0
    openlink foo
    SET /A CNT=%cnt%-1
    IF NOT %cnt% == 0 GOTO l0
:end

然后,您可以像myopenlink.bat N调用命令openlink fooN 次一样调用它。

于 2019-03-05T20:42:00.227 回答