摘要: #!/bin/bashfile='/mnt/514.txt' for i in `cat $file`do echo $idone 阅读全文
posted @ 2015-05-14 16:02 金葵学子 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 行首空格删除sed -r 's/^\s+//g' 514.txtsed -e 's/^\s*//g' 514.txtsed 's/^ *//' 514.txt sed 's/^[[:space:]]*//' 514.txt awk '{sub(/^[ \t]+/, "")};1' 514.txt全部... 阅读全文
posted @ 2015-05-14 14:07 金葵学子 阅读(1167) 评论(0) 推荐(0) 编辑