shell脚本如何获取当前路径并保存到变量时间:2021-07-28 21:46:20 1 #!/bin/bash 2 path=`pwd` 3 cd .. 4 echo "sript path = $path" 第2行不是单引号,看清楚!