인수 목록을 가져오려면 어떻게 해야 합니까?
Bash의 배치의 $@
스크립트에 전달된 모든 인수 목록이 저장됩니다.
아니면 내가 신경써야 해shift
댄카발라로가 옳아요%*
모든 명령줄 파라미터(스크립트명 자체를 제외)에 대해 지정합니다.될 수 있어요.
%0
호출할 때 (- 「」 「-」 「-」 「-」 「-」 「-」 「-」 「-」 「-」 「-」 「-」 「-」 등)foo
,..\foo
,c:\bats\foo.bat
의 개요)
%1
는 첫 파라미터입니다.
%2
는 두 파라미터입니다.
까지 등%9
(그리고)SHIFT
9월 9일)
%~nx0
- 에 - 호출 방식(some-bat.bat)에 관계없이
%~dp0
및 ( - "d:\path"
%~dpnx0
는).
자세한 내용은 https://www.ss64.com/nt/syntax-args.html 및 https://www.robvanderwoude.com/parameters.html를 참조하십시오.
%*
는 스크립트에 전달된 인수를 모두 보유하고 있는 것 같습니다.
%1
%n
★★★★★★★★★★★★★★★★★」%*
는 인수를 보유하고 있지만 내용이 해석되기 때문에 접근하기 어려울 수 있습니다.
때문에 정상적인 으로는 이런 수 없습니다.
myBatch.bat "&"^&
cmd중 각 합니다(%은 cmd.exe입니다)."&"&
)
set var=%1
set "var=%1"
set var=%~1
set "var=%~1"
그러나 임시 파일에 대한 해결 방법이 있습니다.
@echo off
SETLOCAL DisableDelayedExpansion
SETLOCAL
for %%a in (1) do (
set "prompt=$_"
echo on
for %%b in (1) do rem * #%1#
@echo off
) > param.txt
ENDLOCAL
for /F "delims=" %%L in (param.txt) do (
set "param1=%%L"
)
SETLOCAL EnableDelayedExpansion
set "param1=!param1:*#=!"
set "param1=!param1:~0,-2!"
echo %%1 is '!param1!'
은, 「」를 유효하게 하는 입니다.echo on
해 주세요.%1
a a arem
스테이트먼트(%2 .. %* 와도 동작합니다).
, 출력 echo on
FOR-LOOPS 2개
문자 " " "* #
하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 안전하다, 하다,/?
또는 줄 끝에 있는 캐럿 ^은 여러 줄 문자로 사용할 수 있습니다.
FOR/F는 지연된 확장이 꺼진 상태에서 작동해야 합니다. 그렇지 않으면 "!"라고 표시된 컨텐츠가 파괴됩니다.
의 추가 한 후param1
츠키노
그리고 사용하기 위해서param1
안전한 방법으로 지연된 확장을 활성화합니다.
편집: %0에 대한 주석 1개
%0
, .FoO.BaT
, 함수 후%0
%~0
에는 함수 이름(또는 함수 호출에 사용된 문자열이 더 적합합니다)이 포함되어 있습니다.
,가 있으면%~f0
파일명을 불러올 수 있습니다.
@echo off
echo main %0, %~0, %~f0
call :myLabel+xyz
exit /b
:MYlabel
echo func %0, %~0, %~f0
exit /b
산출량
main test.bat, test.bat, C:\temp\test.bat
func :myLabel+xyz, :myLabel+xyz, C:\temp\test.bat
다음 번에 이 정보들을 찾아봐야 할 때 그걸 발견했어요.검색하지 '찾아보세요'라고 입력하면 .call /?
과 같이
...
%* in a batch script refers to all the arguments (e.g. %1 %2 %3
%4 %5 ...)
Substitution of batch parameters (%n) has been enhanced. You can
now use the following optional syntax:
%~1 - expands %1 removing any surrounding quotes (")
%~f1 - expands %1 to a fully qualified path name
%~d1 - expands %1 to a drive letter only
%~p1 - expands %1 to a path only
%~n1 - expands %1 to a file name only
%~x1 - expands %1 to a file extension only
%~s1 - expanded path contains short names only
%~a1 - expands %1 to file attributes
%~t1 - expands %1 to date/time of file
%~z1 - expands %1 to size of file
%~$PATH:1 - searches the directories listed in the PATH
environment variable and expands %1 to the fully
qualified name of the first one found. If the
environment variable name is not defined or the
file is not found by the search, then this
modifier expands to the empty string
The modifiers can be combined to get compound results:
%~dp1 - expands %1 to a drive letter and path only
%~nx1 - expands %1 to a file name and extension only
%~dp$PATH:1 - searches the directories listed in the PATH
environment variable for %1 and expands to the
drive letter and path of the first one found.
%~ftza1 - expands %1 to a DIR like output line
In the above examples %1 and PATH can be replaced by other
valid values. The %~ syntax is terminated by a valid argument
number. The %~ modifiers may not be used with %*
스크립트에 모든 arg를 가져오는 방법은 다음과 같습니다.
@ECHO off
ECHO The %~nx0 script args are...
for %%I IN (%*) DO ECHO %%I
pause
args를 가져와 env vars로 설정하는 간단한 방법이 있습니다.이 예에서는 키와 값이라고 부릅니다.
다음 코드 예를 "args.bat"로 저장합니다.그런 다음 명령줄에서 저장한 배치 파일을 호출합니다.예: arg.bat --x 90 --y 120
이 프로세스를 설명하기 위해 몇 가지 에코 명령어를 준비했습니다.그러나 최종 결과는 --x의 값이 90이고 --y의 값이 120입니다(즉, 위에서 지정한 대로 예를 실행하는 경우).
그런 다음 '정의된 경우' 조건문을 사용하여 코드 블록을 실행할지 여부를 결정할 수 있습니다.run: "arg.bat --x hello-world" 라고 하면, 「」라고 하는 문장을 사용할 수 있습니다.--x echo %--x%가 정의되어 있으면 결과는 "hello-world"가 됩니다.배지를 실행하면 더 의미가 있을 겁니다.
@setlocal enableextensions enabledelayedexpansion
@ECHO off
ECHO.
ECHO :::::::::::::::::::::::::: arg.bat example :::::::::::::::::::::::::::::::
ECHO :: By: User2631477, 2013-07-29 ::
ECHO :: Version: 1.0 ::
ECHO :: Purpose: Checks the args passed to the batch. ::
ECHO :: ::
ECHO :: Start by gathering all the args with the %%* in a for loop. ::
ECHO :: ::
ECHO :: Now we use a 'for' loop to search for our keys which are identified ::
ECHO :: by the text '--'. The function then sets the --arg ^= to the next ::
ECHO :: arg. "CALL:Function_GetValue" ^<search for --^> ^<each arg^> ::
ECHO :: ::
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO :: From the command line you could pass... arg.bat --x 90 --y 220 ::
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
ECHO.Checking Args:"%*"
FOR %%a IN (%*) do (
CALL:Function_GetValue "--","%%a"
)
ECHO.
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO :: Now lets check which args were set to variables... ::
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO :: For this we are using the CALL:Function_Show_Defined "--x,--y,--z" ::
ECHO ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
CALL:Function_Show_Defined "--x,--y,--z"
endlocal
goto done
:Function_GetValue
REM First we use find string to locate and search for the text.
echo.%~2 | findstr /C:"%~1" 1>nul
REM Next we check the errorlevel return to see if it contains a key or a value
REM and set the appropriate action.
if not errorlevel 1 (
SET KEY=%~2
) ELSE (
SET VALUE=%~2
)
IF DEFINED VALUE (
SET %KEY%=%~2
ECHO.
ECHO ::::::::::::::::::::::::: %~0 ::::::::::::::::::::::::::::::
ECHO :: The KEY:'%KEY%' is now set to the VALUE:'%VALUE%' ::
ECHO :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
ECHO %KEY%=%~2
ECHO.
REM It's important to clear the definitions for the key and value in order to
REM search for the next key value set.
SET KEY=
SET VALUE=
)
GOTO:EOF
:Function_Show_Defined
ECHO.
ECHO ::::::::::::::::::: %~0 ::::::::::::::::::::::::::::::::
ECHO :: Checks which args were defined i.e. %~2
ECHO :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
SET ARGS=%~1
for %%s in (%ARGS%) DO (
ECHO.
ECHO :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO :: For the ARG: '%%s'
IF DEFINED %%s (
ECHO :: Defined as: '%%s=!%%s!'
) else (
ECHO :: Not Defined '%%s' and thus has no value.
)
ECHO :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ECHO.
)
goto:EOF
:done
루핑을 사용하여 모든 인수를 순수 배치로 가져오려면:
관찰: 사용하지 않고 사용하는 경우:
@echo off && setlocal EnableDelayedExpansion
for %%Z in (%*)do set "_arg_=%%Z" && set/a "_cnt+=1+0" && call set "_arg_[!_cnt!]=!_arg_!")
:: write/test these arguments/parameters ::
for /l %%l in (1 1 !_cnt!)do echo/ The argument n:%%l is: !_arg_[%%l]!
goto :eof
당신의 코드는 필요한 인수번호로 무언가를 할 준비가 되어 있습니다. 예를 들어...
@echo off && setlocal EnableDelayedExpansion
for %%Z in (%*)do set "_arg_=%%Z" && set/a "_cnt+=1+0" && call set "_arg_[!_cnt!]=!_arg_!"
echo= !_arg_[1]! !_arg_[2]! !_arg_[2]!> log.txt
하다')을 합니다.params
- 합니다.) - 이 파라미터는 스크립트가 수신한 파라미터입니다.params_1
params_n
서, snowledge.n
=params_0
=수: = 배열 요소 수:
@echo off
rem Storing the program parameters into the array 'params':
rem Delayed expansion is left disabled in order not to interpret "!" in program parameters' values;
rem however, if a parameter is not quoted, special characters in it (like "^", "&", "|") get interpreted at program launch
set /a count=0
:repeat
set /a count+=1
set "params_%count%=%~1"
shift
if defined params_%count% (
goto :repeat
) else (
set /a count-=1
)
set /a params_0=count
rem Printing the program parameters stored in the array 'params':
rem After the variables params_1 .. params_n are set with the program parameters' values, delayed expansion can
rem be enabled and "!" are not interpreted in the variables params_1 .. params_n values
setlocal enabledelayedexpansion
for /l %%i in (1,1,!params_0!) do (
echo params_%%i: "!params_%%i!"
)
endlocal
pause
goto :eof
공백이 되어 있는 가 있는 는, 「」를 해 주세요.%*
올바르게 동작하지 않습니다.제가 찾은 최고의 해결책은 모든 인수에 참여하는 루프를 갖는 것입니다.https://serverfault.com/a/22541
set args=%1
shift
:start
if [%1] == [] goto done
set args=%args% %1
shift
goto start
:done
(use %args% here)
하시면 됩니다.For
「」, 「」, 아르목목목게게게
For /?
Setlocal /?
여기 내 길이 있어 =
@echo off
::For Run Use This = cmd /c ""Args.cmd" Hello USER Scientist etc"
setlocal EnableDelayedExpansion
set /a Count=0
for %%I IN (%*) DO (
Echo Arg_!Count! = %%I
set /a Count+=1
)
Echo Count Of Args = !Count!
Endlocal
Shift 명령은 필요하지 않습니다.
@오프: 시작 :: 여기에 코드를 입력합니다.echo.%1은 현재:%~1:: 여기에 코드 삽입을 종료 "%~2" NEQ " " (교대하다기동)
위의 많은 정보를 통해 저는 더 많은 연구를 하고 궁극적으로 답을 얻었기 때문에 결국 다른 사람에게 도움이 되기를 바라며 제가 하게 된 일에 기여하고 싶었습니다.
또한 다양한 변수를 배치 파일로 전달하여 파일 내에서 처리할 수 있도록 하고 싶었습니다.
견적을 사용하여 배치 파일로 전달해도 괜찮았습니다.
다음과 같이 처리해 주셨으면 합니다만, 수동으로 기입하는 대신에 루프를 사용해 주세요.
그래서 이걸 실행해보고 싶었어요.
prog_ZipDeleteFiles.bat "_appPath=C:\Services\Logs\PCAP" "_appFile=PCAP*.?"
또한 for loops의 마법을 사용하여 배치 파일 내에서 이 작업을 수행합니다.
set "_appPath=C:\Services\Logs\PCAP"
set "_appFile=PCAP*.?"
문제는 for loop을 사용하려는 시도가 모두 작동하지 않았다는 것입니다.다음 예시는 다음과 같습니다.
for /f "tokens* delims= " in %%A (%*) DO (
set %%A
)
그러면 됩니다.
set "_appPath=C:\Services\Logs\PCAP"
다음 중 하나가 아닙니다.
set "_appPath=C:\Services\Logs\PCAP"
set "_appFile=PCAP*.?"
설정 후에도
SETLOCAL EnableDelayedExpansion
그 이유는 for 루프가 전체 행을 읽고 루프의 첫 번째 반복 중에 두 번째 파라미터를 %%B에 할당했기 때문입니다.%*은(는) 모든 인수를 나타내므로 처리할 행은 1개뿐입니다.즉, for 루프의 패스는 1개뿐입니다.이것은 고의로 판명된 것으로, 제 논리는 틀렸습니다.
그래서 for 루프를 사용하지 않고 if, shift 및 goto 문을 사용하여 작업을 단순화했습니다.좀 엉터리이긴 하지만 내 필요에 더 잘 맞는 것 같아.모든 인수를 루프한 후 if 문을 사용하여 모든 인수를 처리한 후 루프에서 드롭할 수 있습니다.
내가 달성하려고 했던 것에 대한 승리 선언:
echo on
:processArguments
:: Process all arguments in the order received
if defined %1 then (
set %1
shift
goto:processArguments
) ELSE (
echo off
)
업데이트 - 대신 다음과 같이 수정해야 했습니다. %1을 참조하려고 할 때 모든 환경 변수를 노출하고 이러한 방식으로 Shift를 사용했습니다.
echo on
shift
:processArguments
:: Process all arguments in the order received
if defined %0 then (
set %0
shift
goto:processArguments
) ELSE (
echo off
)
일부 명령줄 파라미터를 추출해야 할 경우가 있지만, 모든 파라미터를 추출하는 것은 아닙니다.처음 파라미터는 추출하지 않습니다.다음의 콜을 상정합니다.
Test.bat uno dos tres cuatro cinco seis siete
물론.bat라는 확장자는 필요 없습니다.테스트가 끝난 이상입니다.동일한 폴더에 exe를 저장합니다.우리가 원하는 것은 "tres cuatro cinco" (한 줄이든 세 줄이든 상관없이) 출력을 얻는 것입니다.목표는 세 가지 파라미터가 필요하고 세 번째 파라미터부터 시작하는 것입니다.간단한 예를 들자면 각 동작은 "에코"에 불과하지만 선택한 파라미터에 대해 보다 복잡한 동작을 생각할 수 있습니다.
어떤 것이 더 낫다고 생각되는지를 알 수 있도록 몇 가지 예를 제시했습니다.유감스럽게도 "%i in (%3, 1, %5)"과 같은 범위의 for 루프를 기반으로 하는 좋은(또는 알 수 없는) 방법은 없습니다.
@echo off
setlocal EnableDelayedExpansion
echo Option 1: one by one (same line)
echo %3, %4, %5
echo.
echo Option 2: Loop For one by one
for %%a in (%3, %4, %5) do echo %%a
echo.
echo Option 3: Loop For with check of limits
set i=0
for %%a in (%*) do (
set /A i=i+1
If !i! GTR 2 if !i! LSS 6 echo %%a
)
echo.
echo Option 4: Loop For with auxiliary list
for /l %%i in (3,1,5) do (
set a=%%i
set b=echo %%
set b=!b!!a!
call !b!
)
echo.
echo Option 5: Assigning to an array of elements previously
set e[0]=%0
set i=0
for %%a in (%*) do (
set /A i=i+1
set e[!i!]=%%a
)
for /l %%i in (3,1,5) do (
echo !e[%%i]!
)
echo.
echo Option 6: using shift and goto loop. It doesn't work with for loop
set i=2
:loop6
set /A i=i+1
echo %3
shift
If %i% LSS 5 goto :loop6
더 많은 옵션을 찾거나 여러 옵션을 조합할 수 있습니다.즐기세요.
언급URL : https://stackoverflow.com/questions/357315/how-to-get-list-of-arguments
'programing' 카테고리의 다른 글
WPF XAML : DataGrid에서 다중 선택을 해제하려면 어떻게 해야 합니까? (0) | 2023.04.13 |
---|---|
큰 텍스트 파일을 같은 줄의 작은 파일로 분할하려면 어떻게 해야 합니까? (0) | 2023.04.13 |
WPF 텍스트 상자 바인딩 업데이트 (0) | 2023.04.13 |
IENumerable에 ForEth 확장 방식이 없는 이유는 무엇입니까? (0) | 2023.04.13 |
Bash에서 변수에 대한 사용자 입력을 읽으려면 어떻게 해야 합니까? (0) | 2023.04.13 |