當(dāng)前位置:首頁(yè) > IT技術(shù) > 系統(tǒng)服務(wù) > 正文

shell編程_從文件中按行讀取數(shù)據(jù)
2021-09-19 22:40:27

從文件中按行讀取數(shù)據(jù),有多種方式。

1 使用read命令

#! /bin/bash

count=1
file_name=$HOME/script/$1
cat $file_name |while read line
do
        count=$[ $count + 1]
        echo "line_num-${count}:$line"
done

?

執(zhí)行結(jié)果

  

?  

文件內(nèi)容

  

?

?

?

本文摘自 :https://www.cnblogs.com/

開通會(huì)員,享受整站包年服務(wù)立即開通 >