redirection1 [Shell] 리다이렉션(Redirection) 리다이렉션을 구현하기에 앞서 어떤 것인지 여기 에서 알아보자 리다이렉션 구현하기 1. input redirect file2 위 명령 식과 동일하다. 오른쪽 꺽쇠같은 경우엔 왼쪽에 1이 생략되어져 있다. 예제 첫번째 방법 #include #include int output_redirection() { close(STDOUT_FILENO); output_fd = open(file2, O_CREAT | O_WRONLY | O_TRUNC, 0644); if (output_fd < 0) return (ft_error_str(PERMISSION_ERR, file2)); re.. 2021. 5. 29. 이전 1 다음