-
%0%
が、コマンドライン引数の数、 -
%1%
、%2%
... が、各コマンドライン引数の値
SampleCommandLineArgs.ahk
; コマンドライン引数を取得するサンプル
ArgCount=%0%
if(ArgCount==0)
{
MsgBox [使用法] %a_scriptname% [files..]
ExitApp
}
Loop, %ArgCount%
{
Arg := %a_index%
MsgBox % Arg
}
Go to list of users who liked
More than 5 years have passed since last update.
%0%
が、コマンドライン引数の数、%1%
、%2%
... が、各コマンドライン引数の値; コマンドライン引数を取得するサンプル
ArgCount=%0%
if(ArgCount==0)
{
MsgBox [使用法] %a_scriptname% [files..]
ExitApp
}
Loop, %ArgCount%
{
Arg := %a_index%
MsgBox % Arg
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked