64 位 Windows 7 中 Vern Buerg 的 list.com 的替代品

发布于 2024-08-12 07:45:09 字数 217 浏览 6 评论 0原文

我想找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

一花一树开 2024-08-19 07:45:09

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.

烟酒忠诚 2024-08-19 07:45:09

我相信有人正在研究替代品。请参阅http://mysite.verizon.net/yellowspoon

I believe someone is working on a replacment. See http://mysite.verizon.net/yellowspoon

[旋木] 2024-08-19 07:45:09

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.

落叶缤纷 2024-08-19 07:45:09

您可以使用 vifmless 模拟 list.com 文件浏览和查看功能。
它们都可以免费用于 Windows。
vifm安装后只需在配置文件中自定义“vi命令”,并将其替换为“less”(set vicmd = less \ -C)
如果您愿意,也可以显示单个窗格(使用“仅”选项)。

最后,您可以创建一个 list.bat,它调用 vifm 并在退出时更改当前目录。这是批处理文件的内容。

@echo off
for / f "delims =" %% i in ('vifm --choose-dir -% 1') do IF "%%i" NEQ "" (cd %%i)

更多详细信息,请参阅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.

@echo off
for / f "delims =" %% i in ('vifm --choose-dir -% 1') do IF "%%i" NEQ "" (cd %%i)

More details in list.com lives on my blog

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文