2015年4月13日

Bash Shell read file line by line and substring

摘要: #read one file line by linefor line in $(cat test1.txt); do echo $line ;done;#while read split line by spacewhile read line do for word in $lin... 阅读全文

posted @ 2015-04-13 08:05 tneduts 阅读(1530) 评论(3) 推荐(0) 编辑

导航