基本的には、ループを含むサブシェルを終了しようとしています。コードは次のとおりです。 サブシェルを終了する方法
stop=0
( # subshell start
while true # Loop start
do
sleep 1 # Wait a second
echo 1 >> /tmp/output # Add a line to a test file
if [ $stop = 1 ]; then exit; fi # This should exit the subshell if $stop is 1
done # Loop done
) | # Do I need this pipe?
while true
do
zenity --title="Test" --ok-label="Stop" --cancel-label="Refresh" --text-info --filename=/tmp/output --font=couriernew # This opens Zenity and shows the file. It returns 0 when I click stop.
if [ "$?" = 0 ] # If Zenity returns 0, then
then
let stop=1 # This should close the subshell, and
break # This should close this loop
fi
done # This loop end
echo Done
これは機能しません。 Doneとは決して言わない。停止ボタンを押すと、ダイアログが閉じられますが、ファイルには書き込みが続けられます。
編集:サブシェルから親シェルに変数を渡すことができる必要があります。しかし、私はファイルへの書き込みを続け、Zenityダイアログを立ち上げておく必要があります。どうすればいい?
私は分かりません。サブシェルを終了する特別な方法はありますか? – Feldspar15523