Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/linq/3.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
我在CMD文件中找到了这些,它是做什么的?_Cmd_Dos - Fatal编程技术网

我在CMD文件中找到了这些,它是做什么的?

我在CMD文件中找到了这些,它是做什么的?,cmd,dos,Cmd,Dos,我在CMD文件中找到了这些,它是做什么的 @echo off if not "%~1"=="p" start /min cmd.exe /c %0 p&exit start "" "GTAVLauncher.exe" start "" "Launcher.exe" timeout /t 120 /nobreak >nul taskkill /f /im GTAVLauncher.exe 你可以自己阅读和学习: echo,if,开始,cmd,

我在CMD文件中找到了这些,它是做什么的

   @echo off 
   if not "%~1"=="p" start /min cmd.exe /c %0 p&exit
   start "" "GTAVLauncher.exe"
   start "" "Launcher.exe"
   timeout /t 120 /nobreak >nul
   taskkill /f /im GTAVLauncher.exe

你可以自己阅读和学习:

  • echo
    if
    开始
    cmd
    退出
    超时
    任务终止
  • %~1
    %0
  • &

ty,我很乐意这样做