最佳答案
如何使用bash脚本回显一个或多个制表符? 当我运行这段代码
res=' 'x # res = "\t\tx"
echo '['$res']' # expect [\t\tx]
我明白了
res=[ x] # that is [<space>x]