在 Windows 中重定向命令输入的替代方法

发布于 2024-11-08 00:19:53 字数 256 浏览 4 评论 0原文

有什么方法可以在 Windows 命令 shell 中使用一些替代方法来“重定向命令输入”?例如,考虑以下命令:

app.exe < ListOfNames.txt

文件 ListOfNames.txt 的内容可能是: 姓名1 姓名2 Name3

那么,是否可以避免使用重定向运算符并使用如下所示的内容:

app.exe Name1 Name2 Name3

当然,这行不通,但是是否有一些类似的方法可以工作?

Is there any way I coluld use some alternative approch to "redirecting command input" in windows command shell? For example, consider the following command:

app.exe < ListOfNames.txt

Content of the file ListOfNames.txt might be:
Name1
Name2
Name3

So, is it possible to avoid using redircting operator and use something like this:

app.exe Name1 Name2 Name3

Of course, this wouldn't work, but is there some similar approach that could work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

2024-11-15 00:19:53

您可以尝试使用无用猫奖 Windows 上的“http://www.robvanderwoude.com/type.php”rel="nofollow">类型:

type ListOfNames.txt | app.exe

You can try to win a Useless Use of Cat Award by using type on Windows:

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