码迷,mamicode.com
首页 > 系统相关 > 详细

shell逐行读取文件

时间:2015-01-07 15:11:24      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:shell linux

这是shell逐行执行文件:

#!/bin/sh
 filepath="/home/test/test.txt"
while read LINE
do
     user=`echo $LINE | awk ‘{print $1}‘`
     pwd=`echo $LINE | awk ‘{print $2}‘`
done <$filepath

shell逐行读取文件

标签:shell linux

原文地址:http://snaile.blog.51cto.com/8061810/1600117

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!