📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)
| 79行目: | 79行目: | ||
以下の例では、foo.txtファイル、または、bar.txtファイルが存在する限り、10秒間隔でfile existsと出力している。<br> | 以下の例では、foo.txtファイル、または、bar.txtファイルが存在する限り、10秒間隔でfile existsと出力している。<br> | ||
<syntaxhighlight lang="fish"> | <syntaxhighlight lang="fish"> | ||
while [ -f foo.txt ] or [ -f bar.txt ] | while [ -f foo.txt ]; or [ -f bar.txt ] | ||
echo "file exists" | echo "file exists" | ||
sleep 10 | sleep 10 | ||