echo $HOSTNAME|awk '{print length($0)}' #慢
echo ${#HOSTNAME} #此方法最快
expr length $HOSTNAME #一般般
echo $HOSTNAME|wc -L #慢