Powershell for Linux:缺少“out-gridview”的解决方法?

b5buobof  于 12个月前  发布在  Shell
关注(0)|答案(3)|浏览(122)

2016年8月,微软的Powershell开源。
但是,还没有“out-gridview”选项。

PS /mnt> dir | Out                                            
Out-Default  Out-File     Out-Host     Out-Null     Out-String   outocp

字符串
请注意,目前没有Out-Gridview。我是否忽略了一个功能,commandlet可以做类似的事情?有时我想让我的表格数据显示在一个可排序的GUI窗口中(用于向不习惯命令行窗口的Windows用户显示某些内容)。
我的Powershell

PS /mnt> $PSVersiontable           

Name                           Value                                           
----                           -----                                           
PSVersion                      6.0.0-alpha                                     
PSEdition                      Core                                            
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}                         
BuildVersion                   3.0.0.0                                         
GitCommitId                    v6.0.0-alpha.9                                  
CLRVersion                                                                     
WSManStackVersion              3.0                                             
PSRemotingProtocolVersion      2.3                                             
SerializationVersion           1.1.0.

zsbz8rwp

zsbz8rwp1#

现在有了。https://devblogs.microsoft.com/powershell/out-gridview-returns/

Install-Module Microsoft.PowerShell.GraphicalTools
get-childitem | out-gridview

字符串

7rtdyuoh

7rtdyuoh2#

这个家伙已经用python构建了自己的partial replacement solution,尽管它目前有一些问题(安装了,但在Ubuntu 16.04的干净安装中给我抛出了一个错误)
从一个干净的操作系统映像:

sudo apt-get install python-setuptools
sudo easy_install pip
sudo pip install opengridview

字符串
它目前也不支持选择/输出

mfuanj7w

mfuanj7w3#

Microsoft.PowerShell.GraphicalToolscurrently not an option。但是same repository现在有Out-ConsoleGridviewShow-ObjectTree。使用Install-Module Microsoft.PowerShell.ConsoleGuiTools安装。

相关问题