在powershell中添加第二行

时间:2011-07-08 19:49:32

标签: powershell

我是PowerShell的新手,我正在玩它。

PS C:\PowerShell> New-Item C:\PowerShell\test.ps1 -type file -force -value "Ping jay"

我想在ping jay下面添加Ping google.com 当我运行脚本时,它ping jay这是一台PC,然后在完成之后我想让它ping google.com

2 个答案:

答案 0 :(得分:3)

"ping google.com" | add-content C:\PowerShell\test.ps1 

答案 1 :(得分:0)

分号是powershell中的行分隔符:

New-Item C:\PowerShell\test.ps1 -type file -force -value "Ping jay ; Ping google.com"