CAT 명령어 만들기 및 기타 시스템 콜

이동욱

2021/07/24

Categories: 시스템 프로그래밍 Tags: 시스템 프로그래밍

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

static void do_cat(const char *path);
static void die(const char *s);

int main(int argc, char *argv[]) {
  int i;
  if (argc < 2) {
    fprintf(stderr, "%s: file name not given\n", argv[0]);
    exit(1);
  }
  for (i = 1; i < argc; i++) {
    do_cat(argv[i]);
  }
  exit(0);
}

#define BUFFER_SIZE 2048

static void do_cat(const char *path)
{
  int fd;
  unsigned char buf[BUFFER_SIZE];
  int n;

  fd = open(path, O_RDONLY);
  if (fd < 0) die(path);

  for (;;) {
    n = read(fd, buf, sizeof buf);
    if (n < 0) die(path);
    if (n == 0) die(path);
    if (write(STDOUT_FILENO, buf, n) < 0) die(path);
  }
  if (close(fd) < 0) die(path);
}

static void die(const char *s)
{
  perror(s);
  exit(1);
}

파일 오프셋


lseek(2)


#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd, off_t offset, int whence);
제목 설명
SEEK_SET 파일의 처음을 기준으로 오프셋 계산 및 이동
SEEK_CUR 현재 위치 기준으로 오프셋 계산 및 이동
SEEK_END 파일의 마지막을 기준으로 오프셋 계산 및 이동

dup(2), dup2(2)


#include <unistd.h>

int dup(int oldfd);
int dup2(int oldfd, int newfd);

ioctl(2)


#include <sys/ioctl.h>

int ioctl(int fd, unsigned long request, ...);
DVD 드라이브 여닫기, 음악 CD 재생
프린터 구동이나 일시정지
SCSI 디바이스 하드웨어 옵션 설정
단말 통신 속도 설정

자세한 내용은 메뉴얼에서 확인할 수 있다.

man ioctl_list

fcntl(2)


#include <unistd.h>
#include <fcnt.h>

int fcntl(int fd, int cmd, ...);

참고 문헌

>> Home