Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/batch-file/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image processing 在批处理脚本中,%*表达式扩展了什么?_Image Processing_Batch File - Fatal编程技术网

Image processing 在批处理脚本中,%*表达式扩展了什么?

Image processing 在批处理脚本中,%*表达式扩展了什么?,image-processing,batch-file,Image Processing,Batch File,我有一个批处理脚本,其中有一行 echo %* >> test.txt %PROCESS% %* 表达式%*表示什么并扩展到什么?它只是扩展到传入shell/batch文件的参数。e、 g foo.bat: echo %* 然后做什么 c:\> foo.bat abcefg hijkl 1 2 3 echo abcefg hijkl 1 2 3 abcefg hijkl 1 2 3 c:\> 那很快。非常感谢。

我有一个批处理脚本,其中有一行

echo %* >> test.txt

%PROCESS% %*

表达式%*表示什么并扩展到什么?

它只是扩展到传入shell/batch文件的参数。e、 g

foo.bat:

echo %*
然后做什么

c:\> foo.bat abcefg hijkl 1 2 3
echo abcefg hijkl 1 2 3
abcefg hijkl 1 2 3
c:\>

那很快。非常感谢。