在 shell脚本中调用一个C语言的可执行程序,如何将C程序中printf的字符保存成到文件中?
例如:C程序为#include<stdio.h>intmain(){printf("helloworld!");return1;}编译后的结果为helloExe如果用sh...
例如:C程序为
#include <stdio.h>
int main()
{
printf("hello world!");
return 1;
}
编译后的结果为 helloExe
如果用shell调用helloExe后,如何将helloExe中打印的"hello world!"字符保存成文件? 展开
#include <stdio.h>
int main()
{
printf("hello world!");
return 1;
}
编译后的结果为 helloExe
如果用shell调用helloExe后,如何将helloExe中打印的"hello world!"字符保存成文件? 展开
2014-03-13
展开全部
shell 里面就直接重定向吧 比如你的程序是hello,那么就是hello > output.txt
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
命令如下
./helloExe > savefile
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-11-26
展开全部
chmod u+x helloExe
./helloExe > file
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询