bash 프롬프트 명령에 정의된 변수를 찾을 수 없는 문제를 해결하는 방법

bash 프롬프트 명령에 정의된 변수를 찾을 수 없는 문제를 해결하는 방법

내 Linux 배포판 centeros7, bash 프롬프트 명령에 정의된 변수를 찾을 수 없습니다.

[wanghao@localhost ~]$ al = nihao
bash: al: command not found...
[wanghao@localhost ~]$ 

답변1

주변에 공간이 없어야 함=

al=nihao

바라보다http://www.gnu.org/software/bash/manual/bashref.html#Shell-Parameters

이 섹션을 주의 깊게 읽으면(http://www.gnu.org/software/bash/manual/bashref.html#Executing-Commands) 그리고 "al"이 명령으로 간주되는 이유를 이해하게 될 것입니다.

관련 정보