解决方法
这有点迂回,但我认为这适用于任何符合posix标准的shell.我已经尝试过破折号,但是我没有繁忙的盒子来测试.
var='ab * cd' tmp="$var" # The loop will consume the variable,so make a temp copy first while [ -n "$tmp" ]; do rest="${tmp#?}" # All but the first character of the string first="${tmp%"$rest"}" # Remove $rest,and you're left with the first character echo "$first" tmp="$rest" done
输出:
a b * c d
请注意,不需要在赋值右侧的双引号;我更喜欢在所有扩展中使用双引号,而不是试图跟踪它们离开它们的安全位置.另一方面,[-n“$tmp”]中的双引号是绝对必要的,如果字符串包含“*”,则需要first =“${tmp%”$rest“}”中的内部双引号”.