私はここに非常に基本的なシェルスクリプトを持っている:を連結出力
for file in Alt_moabit Book_arrival Door_flowers Leaving_laptop
do
for qp in 10 12 15 19 22 25 32 39 45 60
do
for i in 0 1
do
echo "$file\t$qp\t$i" >> psnr.txt
./command > $file-$qp-psnr.txt 2>> psnr.txt
done
done
done
command
は、いくつかのPSNR値を計算し、file
、qp
とi
の組み合わせごとにファイルへの詳細な要約を書き込みます。それはいいです。
2>>
は、私が本当に必要とする1行の情報を出力します。実行された場合にでも、私が取得:
Alt_moabit 10 0
total 47,8221 50,6329 50,1031
Alt_moabit 10 1
total 47,8408 49,9973 49,8197
Alt_moabit 12 0
total 47,0665 50,1457 49,6755
Alt_moabit 12 1
total 47,1193 49,4284 49,3476
私が欲しいもの、しかし、これは次のようになります。
Alt_moabit 10 0 total 47,8221 50,6329 50,1031
Alt_moabit 10 1 total 47,8408 49,9973 49,8197
Alt_moabit 12 0 total 47,0665 50,1457 49,6755
Alt_moabit 12 1 total 47,1193 49,4284 49,3476
どのように私はそれを達成することができますか?
(あなたはもっと適切なものがあると思う場合は、タイトルを変更すること自由に感じなさい)
を!ありがとう! – shiri