Shell Get String Length

我们都知道在编程语言中获取字符串长度的函数有strlen(), len()等。 但如何使用shell获取字符串长度呢?

答案是使用:

echo ${#VAR}
# VAR="hello"
# echo ${#VAR}
# 5