🕌

tty デバイスかどうかの判定

2024/05/12に公開
if tty -s; then
    echo "Running from a shell"
else
    echo "Running from cron"
fi

Discussion