SHELL--3.shell脚本的基础知识

          • -

一、shell脚本创建、执行和调试

脚本创建:
#!/bin/bash 幻数 整个程序最优先执行的

vim ~/.vimrc 自动添加脚本首部

setlocal ts=4 sw=4 ai et
autocmd BufNewFile *.sh call WESTOSSHELL()
func WESTOSSHELL()
    call append(0,"############################################")
    call append(1,"# Create_Time:   ".strftime("%Y%m%d"))
    call append(2,"# author: hyl")
    call append(3,"############################################")
    call append(4,"")
    call append(5,"#! /bin/bash")
endfunc

在这里插入图片描述编辑新的脚本,设定已生成。
在这里插入图片描述脚本执行:
1.手动在环境中开启指定解释器
sh 1.sh
在这里插入图片描述

2.直接在当前环境中运行shell中的指令不开启新的shell
source 1.sh
. 1.sh


3.开启脚本中指定的shell并使用此shell环境运行脚本中的指令
chmod +x 1.sh
/xxx/xxx/1.sh

脚本调试:

sh -x 1.sh

在这里插入图片描述练习:
1.host\_messages.sh 显示当前主机的名称,ip登陆当前主机的用户
hostname:
xxxxx
xxxx.xxxx.xxx.xxx
ipaddress:username: root

在这里插入图片描述

2.clear\_log.sh 执行次脚本后可以清空日志
在这里插入图片描述
补充课题笔记:

sort -n westos | uniq -c -c统计重复个数,并非最多次数的就在最上面,且需要先排序后统计,才能统计完整次数,因为uniq不能统计间隔的重复个数

          • -

标签: shell, 脚本, SHELL, append, sh, call

相关文章推荐

添加新评论,含*的栏目为必填