zhangjinxuan 发表于 2023-11-11 12:54:17

有办法在 powershell 中运行程序实现输入文件重定向吗

例如,我想在 powershell 运行一个程序,但是我想要让这个程序的输入流通过指定的文件进行输入,这个有办法吗

isdkz 发表于 2023-11-11 12:54:24

可以使用 PowerShell 中的重定向运算符<来实现输入文件重定向。例如,你可以这样运行程序:

.\your_program.exe < input.txt


这将会把input.txt文件中的内容作为程序的输入流。这样做可以让你在 PowerShell 中运行程序并指定输入文件。

zhangjinxuan 发表于 2023-11-11 12:59:49

{:10_243:}
页: [1]
查看完整版本: 有办法在 powershell 中运行程序实现输入文件重定向吗