redirect.cpp
上传用户:cqgdffbw
上传日期:2021-04-27
资源大小:17k
文件大小:0k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #include <iostream>
  2. #include <unistd.h>
  3. #include <cerrno>
  4. #include <sys/types.h>
  5. #include <sys/stat.h>
  6. #include <fcntl.h>
  7. using namespace std;
  8. int main(int argc, char* argv[]) 
  9. {
  10.   int fd;
  11.   fd = open("test", O_RDWR | O_CREAT | O_TRUNC);
  12.   if (fd < 0) {
  13.     perror("open");
  14.     exit(1);
  15.   }
  16.   cout << "file descriptor is " << fd << endl;
  17.   write(3,"Hello,world",11);
  18.   write(fd,"Hello,World",11);
  19.   close(fd);
  20.   return 0;
  21. }