首页 > 代码库 > Linux Shell 相关记录

Linux Shell 相关记录

http://www.tutorialspoint.com/unix/unix-shell.htm

  1. Linux Shell 获取脚本的所在目录的绝对路径

    basedir=$(cd $(dirname $0); pwd;)
    echo $basedir

  2. shell 执行错误马上退出,而不是继续执行

    set -e

Linux Shell 相关记录