![명령문: -A: 잘못된 옵션](https://linux55.com/image/128970/%EB%AA%85%EB%A0%B9%EB%AC%B8%3A%20-A%3A%20%EC%9E%98%EB%AA%BB%EB%90%9C%20%EC%98%B5%EC%85%98.png)
declare: -A: invalid option
다음 맵을 선언할 때 이 오류가 발생합니다.
declare -A ApiResourcePath_LambdaFunc_Map=( \
[signup]="CreateUser" \
[verify-user]="VerifyUser" \
[login]="Login" \
[change-password]="ChangePassword" \
[forgot-password]="LostPassword" \
[reset-password]="ResetPassword" \
[refresh-token]="RefreshToken" \
)
여기서는 구문 오류를 찾을 수 없습니다. 이 오류가 발생하는 이유는 무엇입니까?