bash에서 변수의 값 문자열의 길이를 구하는 방법
1 2 3 4 5 6 7 8 9 10 11 12 13 |
### 변수명 [root@xinet ~]# A="XINET.KR" [root@xinet ~]# echo "${#A}" 8 ### expr length "$변수명" [root@xinet ~]# expr length "$A" 8 ### awk [root@xinet ~]# echo $A | awk '{print length}' 8 |