我正在解析一个文件以获取选定的字符串并构建为一行,但是,我不知道如何在 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
谢谢你