Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
行を持つバッチスクリプトがあります
echo %* >> test.txt %PROCESS% %*
式 %* は何を表し、展開されますか?
シェル/バッチ ファイルに渡された引数に単純に展開されます。例えば
foo.bat:
echo %*
そして、やって
c:\> foo.bat abcefg hijkl 1 2 3 echo abcefg hijkl 1 2 3 abcefg hijkl 1 2 3 c:\>