博客
关于我
shell知识点:脚本执行方法
阅读量:146 次
发布时间:2019-02-27

本文共 765 字,大约阅读时间需要 2 分钟。

1.shell脚本执行
  • bash script-name 或 sh script-name
    脚本文件本事没有可执行权限(x)或者文件开头没有指定解释器
    sh test.sh  bash test.sh
  • path/script-name 或./script-name
    需要先将脚本文件的权限修改为可执行(chmod u+x script-name 或 chmod 755 script-name)权限
    /server/scripts/test.sh ./test.sh
  • source script-name 或 . script-name
    source 和.执行脚本可以将执行的脚本的函数和变量带到当前执行的shell中
    source test.sh  . test.sh
    第三种执行方法和前两种的区别:
    在这里插入图片描述
    在这里插入图片描述
2.shell脚本后台运行
  • nohup

    nohup sh test.sh > out.txt &

    out.txt为输出日志的地方

  • sh

    sh test.sh >& out.txt &
3.脚本后台执行知识点
功能 用途
sh 脚本 & 将要执行的脚本放到后台执行
ctrl + c 停止执行当前脚本任务
ctrl + z 暂停执行当前脚本任务
bg 将当前脚本任务放到后台执行
fg 将当前脚本任务
  • jobs

    查单当前后台正在运行的任务

    [root@localhost scripts]# jobs[1]-  Running                 sh jobs.sh &[2]+  Running                 sh jobs.sh &
  • fg 序列号

    调出当前正在后台运行的任务到前台执行

    [root@localhost scripts]# fg 1sh jobs.sh
  • nohub

    后台运行程序

转载地址:http://fgvd.baihongyu.com/

你可能感兴趣的文章
nginx实现负载均衡
查看>>
nginx常用命令及简单配置
查看>>
nginx开机启动脚本
查看>>
nginx异常:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf
查看>>
nginx总结及使用Docker创建nginx教程
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in usrlocalnginxconfnginx.conf128
查看>>
nginx日志分割并定期删除
查看>>
Nginx日志分析系统---ElasticStack(ELK)工作笔记001
查看>>
Nginx映射本地json文件,配置解决浏览器跨域问题,提供前端get请求模拟数据
查看>>
nginx最最最详细教程来了
查看>>
Nginx服务器---正向代理
查看>>
Nginx服务器上安装SSL证书
查看>>
Nginx服务器基本配置
查看>>
Nginx服务器的安装
查看>>
Nginx模块 ngx_http_limit_conn_module 限制连接数
查看>>
Nginx模块 ngx_http_limit_req_module 限制请求速率
查看>>
nginx添加模块与https支持
查看>>
Nginx用户认证
查看>>
Nginx的location匹配规则的关键问题详解
查看>>