1、打印本机第一个端口IP
ifconfig | awk -F: '/inet addr/{print $2}'| awk '{if(NR==1) print $1 }'
2、打印本机所有端口IP
ifconfig | awk -F: '/inet addr/{print $2}' | awk '{print $1}'
3、cat EOF使用
http://xuqq999.blog.51cto.com/3357083/769047
4、shell操作mysql
http://blog.csdn.net/hbcui1984/article/details/5125387
5、sed操作
我觉得Sed,AWK太好用了,以至于用的语法层出不穷。想精通太难了:
http://blog.chinaunix.net/uid-2623904-id-2943148.html
一个多行匹配的样例:
http://www.linuxsir.org/bbs/thread45872.html
路径替换
http://sundful.iteye.com/blog/813035
http://wenku.baidu.com/view/1ce5d421aaea998fcc220e39.html
http://blog.csdn.net/linwhwylb/article/details/7184748
6、AWK
http://techbbs.zol.com.cn/1/85_897.html
http://zh.wikipedia.org/zh-cn/AWK