http://www.tutorialspoint.com/unix/unix-shell.htm
- Linux Shell 获取脚本的所在目录的绝对路径
basedir=$(cd $(dirname $0); pwd;)
echo $basedir - shell 执行错误马上退出,而不是继续执行
set -e
时间: 2024-10-21 04:10:28
http://www.tutorialspoint.com/unix/unix-shell.htm
basedir=$(cd $(dirname $0); pwd;)
echo $basedir
set -e