[powershell] Powershell의 & 기호는 무엇을 의미합니까?

$tool = 'C:\Program Files\gs\gs9.07\bin\gswin64c.exe'

& $tool -q -dNOPAUSE -sDEVICE=tiffg4 $param -r300 $pdf.FullName -c quit

누군가 이것이 어떻게 작동하는지 설명해 줄 수 있습니까? & 기호는 powershell에서 정확히 무엇을 의미합니까?



답변

&명령, 스크립트 또는 함수를 실행할 수있는 호출 연산자입니다. 자세한 내용 : &

Syntax
      & "[path] command" [arguments]

예:

$LocalComputerName = & $ENV:windir\System32\HostName.exe

또한 IDE (예 :)를 사용하는 경우 PowerGUI보조 프로세스를 실행할 때 별도의 창을 열지 못하도록 차단할 수 있습니다.

& more
Start-Process "my_script.here"


답변