exgs / oh_my_minishell

42seoul minishell
2 stars 1 forks source link

환경변수 첫글자는 숫자이면 안되는 문제 #61

Open ykoh42 opened 3 years ago

ykoh42 commented 3 years ago

환경변수 첫글자는 숫자이면 안됨

ykoh42 commented 3 years ago
    if (ft_isdigit(str[0]))
        return (0);
ykoh42 commented 3 years ago

@PennyBlack2008 예전에 환경변수(NAME) 규칙에 숫자랑 문자 _ 만 된다고 했었는데 첫글자가 숫자면 안되는 규칙도 있더라고 ㅠㅠㅋ

ykoh42 commented 3 years ago

https://github.com/exgs/oh_my_minishell/commit/0ab60e99a2311cf114adfdc12ad5bb1178a4cf43

이 커밋에서 export unset 부분은 수정했는데

refine_line함수도 수정하려고 해봤는데 괜히 건들면 딴거안될까봐 일단 냅뒀어!