标签: windows input batch-file command redirect
有没有办法让我在windows命令shell中使用一些替代approch来“重定向命令输入”?例如,请考虑以下命令:
app.exe< ListOfNames.txt
ListOfNames.txt文件的内容可能是: 名1 名称2 NAME3
那么,是否可以避免使用redircting运算符并使用类似的东西:
app.exe Name1 Name2 Name3
当然,这不起作用,但有一些类似的方法可行吗?
答案 0 :(得分:2)
您可以尝试在Windows上使用Useless Use of Cat Award赢取type:
type ListOfNames.txt | app.exe