Think Twice
IT技術メモ | PowerShellのメモ
Created: 2021-06-14 / Updated: 2021-06-14

PowerShellでテキストの書き込みを行う


目次


Set-Contentを利用する

Set-Contentを使います。

Copy
$str = @'
aaaaa
あああああ
1234567890
'@

# 通常の使い方、-Pathで出力先を指定し、 -Value で出力する内容を指定する
Set-Content -Path C:\temp\out.txt -Value $str

# -Value は省略可
Set-Content -Path C:\temp\out2.txt $str

# -Value はパイプラインでも受け取り可
Get-ChildItem C:\temp | Set-Content -Path C:\temp\out3.txt

参考

ソース

参照