#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
typedef struct sockaddr_in addr_in_t;
typedef struct sockaddr addr_t;
typedef struct sockaddr_un addr_un_t;
int main(int argc, const char *argv[])
{
pid_t pid=fork();
if(pid>0)
{
int fd=open("./1.txt",O_WRONLY|O_TRUNC|O_CREAT,0666);
char buf[128]={0};
scanf("%s",buf);
write(fd,buf,127);
close(fd);
}
else
{
sleep(5);
int fd1=open("./1.txt",O_RDONLY);
while(1)
{
char buf[128]={0};
int res=read(fd1,buf,127);
if(res==0)
{
break;
}
printf("buf=%s\n",buf);
}
close(fd1);
}
return 0;
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
typedef struct sockaddr_in addr_in_t;
typedef struct sockaddr addr_t;
typedef struct sockaddr_un addr_un_t;
int main(int argc, const char *argv[])
{
pid_t pid=fork();
if(pid>0)
{
execl("./111"," ",NULL);
}
else
{
sleep(4);
char* arg[2]={" "," "};
execv("./111",arg);
}
return 0;
}