您的位置:首页 > 其它

Using awk to print all fields left

2008-09-11 15:34 281 查看
[root@Alec | ~/test]#cat temp.txt
1 2 3
1 2
1 2 3 4
1 2 3 4 5
[root@Alec | ~/test]#awk '{$1=$2="";print}' temp.txt
  3
 
  3 4
  3 4 5
[root@Alec | ~/test]#
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: