我解析文件以獲取選定的字符串並構建到一行,但是,我不知道如何在shell腳本中執行該操作(如// add ...所示)如何追加字符串
while read line
do
tt=`echo $line | cut -d'|' -f2 | cut -d'"' -f1`
//add a $total = add all tt parts into a big string seperate by ", "
done < tmp_file
echo $total >> outfile
謝謝
只是附和什麼在'tt'(加逗號)輸出? – nhahtdh
我需要爲每個文件構建一行($ total),並且該行由許多$ tt作成 –
可以不用' echo'。只是我的想法會招致相當多的磁盤訪問。 – nhahtdh