64 位 Windows 7 中 Vern Buerg 的 list.com 的替代品
我想找到 list.com 的替代品,特别是接受管道输入的能力。例如:
p4 sync -n | list
它接受 perforce 命令的输出并在查看器/编辑器中显示结果以进行操作或保存。我知道我会将输出发送到文件,然后在查看器/编辑器中打开该文件,但我将其用于临时结果。
List.com 不适用于 64 位 Windows 7。
I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:
p4 sync -n | list
which accepts the output of the perforce command and displays the results in the viewer/editor for manipulation or saving. I know that I would send the output to a file and then open the file in the viewer/editor but I use it for temporary results.
List.com doesn't work on 64 bit Windows 7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Charles Prineas 的“V”是 Vern Buerg 列表的一个很好的基于 32 位 Windows 的替代方案。可以在 http://www.fileviewer.com 找到它。
A good 32-bit Windows-based alternative to Vern Buerg's List is Charles Prineas' "V". Find it at http://www.fileviewer.com.
我相信有人正在研究替代品。请参阅http://mysite.verizon.net/yellowspoon
I believe someone is working on a replacment. See http://mysite.verizon.net/yellowspoon
less 实用程序可以显示从标准输入读取的文本。您可以下载该程序的 32 位 Windows 二进制文件,微软声称大多数为运行 32 位版本 Windows 的计算机设计的程序都可以在运行 64 位版本 Windows 的计算机上运行。
The less utility can display text read from standard input. You can download 32-bit Windows binaries of the program, and Microsoft claims most programs designed for a computer running a 32-bit version of Windows will work on a computer running 64-bit versions of Windows.
您可以使用 vifm 和 less 模拟 list.com 文件浏览和查看功能。
它们都可以免费用于 Windows。
vifm安装后只需在配置文件中自定义“vi命令”,并将其替换为“less”(set vicmd = less \ -C)
如果您愿意,也可以显示单个窗格(使用“仅”选项)。
最后,您可以创建一个 list.bat,它调用 vifm 并在退出时更改当前目录。这是批处理文件的内容。
更多详细信息,请参阅list.com 位于我的博客上
You can simulate list.com file browsing and viewing features with vifm and less.
They are both freely available for windows.
After vifm installation just customize the "vi command" in the configuration file, and replace it with "less" (set vicmd = less \ -C)
You can also have a single pane display if you prefer so (with the "only" option).
Finally you can create a list.bat which calls vifm and changes the current directory on exit. This is the batch file content.
More details in list.com lives on my blog