由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - windows下输入流转向求助
相关主题
perl怎么这么难?再来问个蠢问题
UNIX下的gprof command怎么用啊?Windows comand line extends the end like Unix "\" (转载)
Is there some command t run at the background (转载)Windows下有没有一个类似Unix下的随机文件
在linux 和 Unix 上做 C/C++ 有差别吗?Windows里有没有可以查看.lib文件的工具?
About command line in C++Unix/Linux下的C++ coding 跟Windows下到底有多大不同? (转载)
如何 randomize 一个sorted的文件 ?编写支持CGI的web服务器大致原理 (转载)
windows里有没有类似unix里nm 的东西?这个coupondeal是哪来的5毛?
死了,哪里有mingw的入门介绍?access violation of C# in Visual Studio 2013 (转载)
相关话题的讨论汇总
话题: 转向话题: windows话题: file话题: 下输话题: overwrite
进入Programming版参与讨论
1 (共1页)
h***o
发帖数: 5030
1
Windows下面输出转向是>>,怎么输入转向啊
我写了一个程序a.exe
我希望能够像unix下一样可以写a.exe<>output.txt
可是直接这么写不成,提示"<< was unexpected at this time"
t****t
发帖数: 6806
2
even unix do not use <<
you probably meant
a.exe < input.txt > output.txt
(or >> output.txt, depending on whether you want to append or overwrite)
P********e
发帖数: 2610
3
可以这样
a.exe input.txt >> output.txt

【在 h***o 的大作中提到】
: Windows下面输出转向是>>,怎么输入转向啊
: 我写了一个程序a.exe
: 我希望能够像unix下一样可以写a.exe<>output.txt
: 可是直接这么写不成,提示"<< was unexpected at this time"

h***o
发帖数: 5030
4
多谢

【在 t****t 的大作中提到】
: even unix do not use <<
: you probably meant
: a.exe < input.txt > output.txt
: (or >> output.txt, depending on whether you want to append or overwrite)

k**f
发帖数: 372
5

This does not redirect standard input from file input.txt. It takes input.
txt as a command line argument. If the program do not make use of command
line arguments, your suggestion does not work.
>> in redirection means that if the file exists, append the output to the
file; while > means overwrite if the file exists.

【在 P********e 的大作中提到】
: 可以这样
: a.exe input.txt >> output.txt

1 (共1页)
进入Programming版参与讨论
相关主题
access violation of C# in Visual Studio 2013 (转载)About command line in C++
zabbix, nagios, icinga, sensu这些监控软件有Windows版吗?如何 randomize 一个sorted的文件 ?
[转载] What search method is used in exists()?windows里有没有类似unix里nm 的东西?
Please help: regarding ftp scripting in Windows xp Command prompt死了,哪里有mingw的入门介绍?
perl怎么这么难?再来问个蠢问题
UNIX下的gprof command怎么用啊?Windows comand line extends the end like Unix "\" (转载)
Is there some command t run at the background (转载)Windows下有没有一个类似Unix下的随机文件
在linux 和 Unix 上做 C/C++ 有差别吗?Windows里有没有可以查看.lib文件的工具?
相关话题的讨论汇总
话题: 转向话题: windows话题: file话题: 下输话题: overwrite