脚本创建:
#!/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不能统计间隔的重复个数