linux 获取文件路径中的目录路径和文件名
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
经常碰到这样的需求,需要知道执行程序的路径和程序名,该怎么办呢?linux中有两个命令:
dirname 获得文件所在目录名称
basename 获得文件路径中的文件名
下面我们来看看方法哈:
#getdir.sh
path="`dirname $0`"
echo "programe's file path: $path"
name="`basename $0`"
echo "programe's name: $name"
那我们执行下看看结果:
/home/good/test/getdir.sh
programe's file path: /home/good/test
programe's name: getdir.sh
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)