标签:shell
###10个实战及面试常用的shell脚本注意事项
#!/bin/bash
变量名大写
局部变量小写
函数名小写
名字体现出实际作用
set -e 遇到执行非0时退出脚本
set -x 打印执行过程
(有的需要根据机器来修改,不全通用)
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}‘
标签:shell
原文地址:http://blog.51cto.com/13713370/2105995