* echo [#y7498fb6]

** Write-OutputとWrite-Host [#b93a037a]
Write-Outputはコマンドレットの結果をパイプラインに渡す。Wite-Hostはコマンドレットの結果をパイプラインに渡さない。

 PS> function Receive-Output
 {
     process { Write-Host $_ -ForegroundColor Green }
 }
 
 PS> Write-Output  "this is a test" | Receive-Output
 PS> Write-Host "this is a test" | Receive-Output
 PS> Write-Output  "this is a test"


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS