#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[])
{
int fd=open("./1.txt",O_RDONLY);
int fd1=open("./2.txt",O_WRONLY);
while(1)
{
char buf[32]={0};
int res=read(fd,buf,31);
if(res==0)
{
break;
}
printf("%s\n",buf);
write(fd1,buf,32);
}
close(fd);
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[])
{
struct stat buf={0};
stat(argv[1],&buf);
mode_t mode=buf.st_mode;
if(mode | S_IWUSR==mode&&mode|S_IWGRP==mode&&mode|S_IWOTH==mode)
{
system("chmod u-rwx,o-rwx,g-rwx argv[1]");
}
else
{
system("chmod u+rwx,o+rwx,g+rwx argv[1]");
}
return 0;
}
2024.8.7
最新推荐文章于 2024-11-06 23:59:11 发布