LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 856|回复: 4

新手求大家帮助,一个编程题目

[复制链接]
发表于 2009-1-8 10:16:13 | 显示全部楼层 |阅读模式
本主题过期,请管理员删除。
发表于 2009-1-8 11:11:35 | 显示全部楼层
给我的感觉,
父进程先fork出子进程,
然后子进程用 tail -f 和 expect 就可以搞定了。
父进程用 wait 就可以了。

纯shell搞定
回复 支持 反对

使用道具 举报

发表于 2009-1-8 11:34:45 | 显示全部楼层
我初学,不知道对不对啊。

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/waitlh>

main()
{
sysytem("echo "HI it ....." >> /syslog  /* 我觉得用shell  方便点,就不用fopen什么的了。*/
if((fork()==0)
printf("yes i feel very good\n");
else
{
wait();
printf("Ops ,No one in the chat room\n")
}
}
回复 支持 反对

使用道具 举报

发表于 2009-1-8 14:17:31 | 显示全部楼层
Post by hstking;1935587
我初学,不知道对不对啊。

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/waitlh>

main()
{
sysytem("echo "HI it ....." >> /syslog  /* 我觉得用shell  方便点,就不用fopen什么的了。*/
if((fork()==0)
printf("yes i feel very good\n");
else
{
wait();
printf("Ops ,No one in the chat room\n")
}
}


当然不对了~
父进程向文件/syslog中写入:Hi, it is a lovely day today.
你是第一行就写的~那时还没产生父子关系~
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-1-9 10:18:45 | 显示全部楼层
1111111
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表