参考:http://wx4.sinaimg.cn/mw690/612edf3aly1fi6egmlte0j20c821ljz6.jpg
1、使用column进行格式化输出
mount | column -t
cat /etc/passwd | column -t -s:
2、xargs输出结果转移
cat urllist.txt |xargs wget
#把urllist里面的url输出到wget后面,并且执行wget去下载资源
ps -ax | grep tomcat | grep -v grep |awk '{print $1}'| xargs kill -9
#找到tomcat进程然后干掉
3、查看本机公网IP
curl ip.cn