bash – 获取shell脚本目录的父目录

前端之家收集整理的这篇文章主要介绍了bash – 获取shell脚本目录的父目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Getting the source directory of a Bash script from within52个
我这里有一个shell脚本:
/node_modules/.bin/exec.sh

在exec.sh脚本中,我想获取包含脚本的目录的父目录的路径(不是pwd / cwd!).我可以像这样获取包含目录:

`dirname $0`

这将产生:

/node_modules/.bin

但我希望在一个目录更高,我只想得到

/node_modules

我无法找到答案,我的猜测是:

`dirname $1`

但只是一个猜测,不确定这是否正确.任何人都可以解释如何做到这一点以及它是如何工作的?

运行dirname两次(嵌套).
~$dirname $PWD
/home
~$dirname `dirname $PWD`
/
~$
原文链接:https://www.f2er.com/bash/383616.html

猜你在找的Bash相关文章