Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1489490
  • 博文数量: 408
  • 博客积分: 10036
  • 博客等级: 上将
  • 技术积分: 4440
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-06 13:57
文章分类

全部博文(408)

文章存档

2011年(1)

2010年(2)

2009年(1)

2008年(3)

2007年(7)

2006年(394)

我的朋友

分类: LINUX

2006-09-08 16:08:31

逐行读取文件内容
http://blog.chinaunix.net/u/13329/showart.php?id=166401
$cat rename.sh

#!/bin/sh
#
#Author: cnscn
#Date  : 2006-09-07
#Home  : http://cnscn2008.cublog.cn
#

#read lines from file

function   read_line_file
{
    FILENAME=$1
    while read  LINE
    do
         echo  ${LINE}
         ...
    done < $FILENAME
}

#call function
read_line_file $1

#End of script


.$ cat a.txt | more
11563629962
11563634472
11561796722
11559395371
11564486721
11561724591
11559191541
11561739722
11559288902
11542068311
11558335531
11558479671
11558278691
11560002781

$rename.sh a.txt
11563629962
11563634472
11561796722
11559395371
11564486721
11561724591
11559191541
11561739722
11559288902
11542068311
11558335531
11558479671
11558278691
11560002781
阅读(2264) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~