1、准备数据文件
$cat a.txt
200:2
300:3
400:4
500:5
2、用while循环从文件中读取数据
#!/bin/ksh while read line do echo $line done < a.txt
运行shell,结果如下:
200:2
300:3
400:4
500:5
3、使用IFS读文件
说明:默认情况下IFS是空格,如果需要使用其它的需要重新赋值
#!/bin/ksh IFS=* while read field1 field2 do echo $field1$field2 done < a.txt
运行shell,结果如下:
2002
3003
4004
5005
***********************************************************
学习永远不晚。——高尔基
***********************************************************
时间: 2024-10-02 17:44:38