산술 연산 expr, let while and until loop for-loop 과제 1. 산술 연산 expr, let 앞 포스트에 expr과 let의 차이를 간단하게 비교 설명해 놓았다. 조금 더 자세하게 차이를 비교해보자. type : 특정 명령어 유형을 확인하기 위한 명령어 type 명령을 써서 차이를 확인해보면 다음과 같다. apple@lww:~/bin$ type expr expr is /usr/bin/expr apple@lww:~/bin$ type let let is a shell builtin let 은 bash shell에 내장된 명령이다. expr은 command로 지원되는 명령이다. let은 bash shell에 종속된 명령이기에 다른 shell로 접근하게 되면 let 명령은 사용할 수..