お世話になります。
下記の内容のシェルスクリプトを実行すると数字の1〜5が表示され最後に”終了しました”(LANG=Cだと”Terminated”)と表示されます。この”終了しました”を表示させたくないのですが何か良い方法はありますでしょうか?
よろしくお願い致します。
------- 以下シェルスクリプト --------
#!/bin/sh
i=0
(
while :
do
sleep 1
done &
) | while :
do
echo $i
if [ $i -eq 5 ];then
kill -TERM 0
fi
i=`expr $i + 1`
done
sleepが効かないように書いてあるので何をしたいのか分かりませんが、
kill -TERM 0
の代わりに
exit
を使えばいいでしょう。
shのマニュアルのexitのところ:
exit [n]
Cause the shell to exit with a status of n. If n is omitted,
the exit status is that of the last command executed. A trap on