當前位置:成語大全網 - 書法字典 - Powershell讀取txt

Powershell讀取txt

可完成的

例如,文本內容:

[IP配置]

1 192.168.1.9956次。

2 192.168.3.99 55次

3 192.168.1.49 54次。

4 192.168.1.2353次。

5 192.168.2 . 10 52次。

[Url配置]

1 \index.html 56次

2 \上傳\a.jpg 55次

3 \default.asp 54次

4 \images\b.jpb 53次

5 \img\c.bmp 52次

只取前3行。

$ s = GC " E:\ 1 . txt ";

$ip=[array]::IndexOf($s,"[IP Config]")

$url=[array]::IndexOf($s,"[Url配置]")

$s[($ip+1)..($ IP+3)]| Out-File e:\ IP . txt;

$s[($url+1)..($ URL+3)]| Out-File e:\ URL . txt;