while , for 简单示例:把输入文件的每一行转换成一个独立的文件

#!/usr/bin/ksh
echo "==start show detial content of input.dat==================="
cat input.dat


echo "==transfer each  line of input.dat to a single output file==================="
let j=0
while read s
do
    j=`expr $j + 1`
    echo $j
    echo $s
    echo "input line=""$s" >>output$j.evt
done < input.dat


echo "===show all the output file=================="
ls  *.evt
 


echo "==show detail info of each output file==================="
for i in `ls *.evt`
do
    echo $i
    cat $i
    echo "====================="
    rm $i
done

###############################################
==start show detial content of input.dat===================
able
binc
date
forg

==transfer each  line of input.dat to a single output file===================
1
able
2
binc
3
date
4
forg
5

===show all the output file==================
output1.evt  output2.evt  output3.evt  output4.evt  output5.evt
==show detail info of each output file===================
output1.evt
input line=able
=====================
output2.evt
input line=binc
=====================
output3.evt
input line=date
=====================
output4.evt
input line=forg
=====================
output5.evt
input line=
=====================

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值