我想用 bash 将字符串中的第一个字符大写。
foo="bar"; //uppercase first character echo $foo;
应该打印“酒吧”;
foo="$(tr '[:lower:]' '[:upper:]' <<< ${foo:0:1})${foo:1}"