-
42tokyoのレビューから引用
-
since the struct provided from input handling isn't clear yet this should be split into execution and redirection separately
-
お試し🤓
-
## Description
```shell
minishell$ cat
^C
minishell$ minishell$
```
-
-
pipe 연결시
$?는 맨 마지막 파이프라인에서 실행된 프로세스의 exit status를 출력한다.
각각의 프로세스가 독립적으로 실행되는데 입출력이 연결 돼있겠지? => pipe 함수 사용. 자식 프로세스 기다리는건 minishell 프로세스만 한다. 메인프로세스에서 파이프 갯수만큼 fd를 만들어서 밖에서 연결을 해주는게 가능한가? 재귀적으로 안하면 …
-
implement redirection part
* redirect in : < infile
* redirect out: > outfile
* here_doc : > outfile
-
parse_simple_command.c at L46
-
### Is your feature request related to a problem? Please describe.
One of the most popular guns this decade is the Mossberg Shockwave, a short barreled (14/18.5in) pump action "bird's-head grip" shot…
-
## 빌트인 목록
- echo
- -n 옵션 포함
- cd
- pwd
- export
- unset
- env
- exit
## 정상 작동 하시나요?
- [x] env제외 모든 빌트인 커맨드는 PATH환경변수가 unset 되었을때, 대소문자 구분 하는거 (소문자만)
- [x] exit 엄청 큰 숫자 하면 numberic 에러 나…