awk

awk'{print $3"  "$5}'   ll.txt   其中"  " 中间可以加任意输入内容

awk -F '[ ,]'    '{print $3"  "$5}'   ll.txt   其中-F 可以指定多个分隔符在[]里面

 cut -d " " -f3,5    -d 指定分割符 " "中指定的的分割符的 -f 指定几列的内容

cut  -c   5-10,20-50      ll.txt  从第一个字符数的第5-10,20-50的字符打印

  cut  -c   5-10,20-  ll.txt   -后面不接内容到行尾

tr "kkk"  " "    

原文地址:https://www.cnblogs.com/todayORtomorrow/p/10503078.html