「batファイル」引数のダブルクォーテーションを取り除くサンプル

2021年3月15日

書式
引数n:%%~n = %~n
使用例

@echo off
echo 引数1:%%1 = %1
echo 引数1:%%~1 = %~1
echo 引数2:%%2 = %2
echo 引数2:%%~2 = %~2

実行結果
>test100.bat “test abc" “123 info"
引数1:%1 = “test abc"
引数1:%~1 = test abc
引数2:%2 = “123 info"
引数2:%~2 = 123 info

batch

Posted by arkgame