Powershell:Out-gridview 带有文本文件
Powershell: Out-gridview with text files
我有两个文本文件,假设包含:
1.txt:
1
2
3
4
5
6
2.txt:
a
b
c
d
e
f
我正在尝试读取文件,然后将结果输出到 Out-Gridview(每个文件在其自己的列中):
1 a
2 b
3 c
4 d
5 e
6 f
我正在尝试:
$list1= gc 1.txt
$list2= gc 2.txt
$list1 | Add-Member -Name "LIST 2" -MemberType NoteProperty -Value $liste2
$list1 | out-gridview -wait
但我得到的只是:
如何读取每个文本文件然后输出到 gridview 中的列?非常感谢,我无法弄清楚...
当只有两列时创建哈希表。
像这样:
$a = 1,2,3,4
$b = "a","b","c","d"
$hashtable = @{}
for($i = 0;$a.Count -gt $i;$i++){
$hashtable.Add($a[$i],$b[$i])
}
$hashtable | Out-GridView
如果您有两列以上,请创建一个自定义对象
我有两个文本文件,假设包含:
1.txt:
1
2
3
4
5
6
2.txt:
a
b
c
d
e
f
我正在尝试读取文件,然后将结果输出到 Out-Gridview(每个文件在其自己的列中):
1 a
2 b
3 c
4 d
5 e
6 f
我正在尝试:
$list1= gc 1.txt
$list2= gc 2.txt
$list1 | Add-Member -Name "LIST 2" -MemberType NoteProperty -Value $liste2
$list1 | out-gridview -wait
但我得到的只是:
如何读取每个文本文件然后输出到 gridview 中的列?非常感谢,我无法弄清楚...
当只有两列时创建哈希表。 像这样:
$a = 1,2,3,4
$b = "a","b","c","d"
$hashtable = @{}
for($i = 0;$a.Count -gt $i;$i++){
$hashtable.Add($a[$i],$b[$i])
}
$hashtable | Out-GridView
如果您有两列以上,请创建一个自定义对象