次のことを行うbashスクリプトがあります。
spinner()
{
local pid=$1
local delay=0.75
local spinstr='\|/-'
while [ "$(ps a | awk '{print $1}' | grep $pid)" ]; do
local temp=${spinstr#?}
printf " [%c] " "$spinstr"
local spinstr=$temp${spinstr%"$temp"}
sleep $delay
printf "\b\b\b\b\b\b"
done
printf " \b\b\b\b"
}
printf "Testing for timestamps,please wait..." | tee test_report.txt
(process_1 -f $FILENAME test_1 >> test_report.txt 2>&1)&
spinner $!
printf "\n"
printf "Testing for accurate seq numbers,please wait..." | tee test_report.txt
(process_2 -f $FILENAME sequence >> test_report.txt 2>&1) &
spinner $!
printf "\n";
ただし、test_report.txt を開くと、の出力のみが表示され、の'process_2'
出力は表示されません。'process_1'
問題は、バックグラウンド プロセスの stdout を含む出力ファイルがどうなるかということだと思います。