「PowerShell入門」Get-Contentでファイルを読み込む

書式
配列変数名 = Get-Content ファイルパス [-Raw]
ファイルの文字を読み込み配列を取得します。

使用例
1.テキストファイル「c:\study\demo.tx」
tokyo
oosaka
fukuoka

2.サンプルコード(test.ps1)

$city = Get-Content "c:\study\demo.txt"

foreach ($res in $city) {
  Write-Host $res
}

3.実行結果
PS C:\study\powershell> .\test.ps1
tokyo
oosaka
fukuoka

PowerShell

Posted by arkgame