S0YKIM / 42-MINISHELL

C project to mimic bash shell. This program interprets and executes commands just like bash shell. Built-in functions such as echo, cd, exit, etc. available.
1 stars 1 forks source link

환경변수 $? 관리 #30

Closed S0YKIM closed 2 years ago

S0YKIM commented 2 years ago

환경변수 리스트 저장하실 때에 마지막에 $?=0 도 추가해주세요! bash 쉘을 켜자마자 echo $? 명령어를 실행하면 0 이 출력되는데, 이를 위해서 필요합니다. env 폴더 내의 update_env() 함수를 이용해 update_env(data, "?", 0); 만 끝에 한 줄 추가해주시면 됩니다~

Originally posted by @S0YKIM in https://github.com/S0YKIM/42-MINISHELL/issues/5#issuecomment-1094195646

hhkim0729 commented 2 years ago

add_new_env_node 및 update_env 함수 수정하시면 작업하도록 하겠습니다~!

hhkim0729 commented 2 years ago

value값이 문자열이라서 0은 문자로 들어가도록 구현되었습니다~!

S0YKIM commented 2 years ago

네 확인했습니다!