powershell中的&符号是什么意思?


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

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

有人可以向我解释这是如何工作的吗?&符号在powershell中到底是什么意思?

Answers:


103

&是允许您执行命令,脚本或函数的调用运算符。有关详细信息:

Syntax
      & "[path] command" [arguments]

例:

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

另外,如果您使用IDE(例如PowerGUI),则可以在执行辅助进程时阻止其打开单独的窗口:

& more
Start-Process "my_script.here"

什么& more
kjhf

1
@kjhf使用IDE时,如果执行的新进程打开一个新的单独窗口运行,则可以使用来隐藏该窗口& more
slybloty

4
另请参阅官方文档
富兰克林于
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.