linux 中调用shell脚本时指定工作目录为shell脚本所在的目录
2022/4/27 7:12:52
本文主要是介绍linux 中调用shell脚本时指定工作目录为shell脚本所在的目录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、
root@DESKTOP-1N42TVH:/home/test# ls root@DESKTOP-1N42TVH:/home/test# ls /home/test2/* /home/test2/a.txt /home/test2/test.sh root@DESKTOP-1N42TVH:/home/test# cat /home/test2/test.sh ## shell脚本所在目录及内容 #!/bin/bash wc -l ./a.txt root@DESKTOP-1N42TVH:/home/test# bash /home/test2/test.sh ## 默认的当前目录是执行脚本的目录, 而不是shell所在的目录,执行脚本的目录下没有a.txt wc: ./a.txt: No such file or directory
2、利用
$(dirname $0) ## 指定工作目录为shell脚本所在的目录
修改shell脚本测试:
root@DESKTOP-1N42TVH:/home/test# ls root@DESKTOP-1N42TVH:/home/test# ls /home/test2/* /home/test2/a.txt /home/test2/test.sh root@DESKTOP-1N42TVH:/home/test# cat /home/test2/test.sh #!/bin/bash dir=$(dirname $0) ## 指定工作目录为shlle脚本所在的目录 wc -l $dir/a.txt root@DESKTOP-1N42TVH:/home/test# bash /home/test2/test.sh ## a.txt在shell所在的目录,故可以输出行数 5 /home/test2/a.txt
这篇关于linux 中调用shell脚本时指定工作目录为shell脚本所在的目录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南