记录几种获取字符串长度的方式1$ str=wxnacy1$ echo ${#str}12# -n 是去掉 \n 符号,不然计算的长度为 7$ echo $(echo -n $str | wc -c)1$ echo $str | awk '{print length($0)}'