如何使用命令:command< cmd批处理中的文本文件?

时间:2016-09-21 18:10:42

标签: batch-file cmd io-redirection

请帮我看看如何使用命令“command< file.txt” 我不知道这个命令是用的。给我举几个例子。 谢谢!

2 个答案:

答案 0 :(得分:3)

  

command.exe< file.txt的

该命令会将application/vnd.company.myitem-1+json的内容重定向到file.txt


例如,如果command.exe包含file.txt,那么hello world将导致set /p var=<file.txt的内容存储到file.txt

利用命令重定向的完整批处理文件脚本将是:

%var%

以下是一些进一步解释命令重定向的链接:
http://robvanderwoude.com/battech_redirection.php
http://ss64.com/nt/syntax-redirection.html

答案 1 :(得分:1)

http://www.robvanderwoude.com/battech_redirection.php 访问上面的链接,了解有关将输出从CMD重定向到文本文件的更多信息