Powershell:带有文本文件的Out-gridview

时间:2017-10-17 16:47:12

标签: powershell text-files 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

但我得到的是:

enter image description here

如何读取每个文本文件然后输出到gridview中的列?非常感谢你,我无法弄明白......

1 个答案:

答案 0 :(得分:0)

只有两列时创建哈希表。 像那样:

read_excel(xlsx_example, col_types=col (Sepal.Length = col_numeric()))

如果您有两列以上,请创建自定义对象