###10个实战及面试常用的shell脚本
- 写脚本之前的一些
注意事项
- 1.开头加解释器:
#!/bin/bash
- 2.语法缩进,使用4个空格,多加注视说明
- 3.命名规则:
变量名大写 局部变量小写 函数名小写 名字体现出实际作用
- 4.默认变量是全局的,在函数中的变量local指定为局部变量,避免污染其他作用域
- 5.两个命令帮助调试脚本:
set -e 遇到执行非0时退出脚本 set -x 打印执行过程
- 6.写完后要测试再到生产
- 1.开头加解释器:
- 1.获取本机ip地址
(有的需要根据机器来修改,不全通用)
method 1: ifconfig eth0 | grep "inet addr" | awk ‘{ print $2}‘ | awk -F: ‘{print $2}‘ method 2: ifconfig eth0|grep ‘inet addr:‘|cut -d: -f2|cut -d " " -f1 method 3: ifconfig eth0|sed -nr ‘2s#^.*addr:(.*) Bca.*$#\1#g‘p method 4: ifconfig eth0|sed -n ‘/inet /{s/.*addr://;s/ .*//;p}‘ method 5: ifconfig eth0|awk ‘/inet addr:/ {print $2}‘|awk -F: ‘{print $2}‘ method 6: ip add|awk -F ‘[ /]+‘ ‘NR==8 {print $3}‘
原文地址:http://blog.51cto.com/13713370/2105995
时间: 2024-10-11 21:08:02