1. 程式人生 > >shell如何取到檔案中某一行某一列的內容

shell如何取到檔案中某一行某一列的內容

<span style="font-size:18px;">#!/bin/sh
file=$1
#把一個file中的內容放到all_dc_host中
all_dc_host=`cat ${file}`
for((j=1;j<=454;j++))
do
num=0
#依次取到file中的內容
for dc in ${all_dc_host}
do
#通過awk取出第j行第二列的內容
tmp=$(awk -v co="${j}" 'NR==co {print $2}' ./${dc})
#判斷取出的內容是不是數字,如果是數字則累加到num中,注意兩個變數想加的寫法
if echo $tmp | egrep -q '^[0-9]+$'; then
num=$(($num+$tmp))
fi
done
#將計算結果儲存到end_result中
echo -e "${num}">>end_result
done</span>