1、创建/data/xusx目录。
[root@localhost ~]# mkdir -p /data/xusx
2、创建文件。
[root@localhost xusx]# touch xusx.txt
3、文件写入内容
[root@localhost xusx]# cat >>xusx.txt<< EOF
> inet addr:10.0.0.8
> Bcast:10.0.0.255
> Mask:255.255.255.0
> EOF
4、用awk过滤文件内容输出
[root@localhost xusx]# awk -F ":" '{print $2}' xusx.txt
10.0.0.8
10.0.0.255
255.255.255.0