ファイルを解析して選択した文字列を取得し、1 行にまとめていますが、シェル スクリプトで (//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
ありがとうございました