當前時間是否大於某個時刻

顽固派發表於2024-03-20
#!/bin/bash

# 獲取當前時間的小時數
current_hour=$(date +"%H")

# 判斷當前小時數是否大於9
if [ "$current_hour" -gt 9 ]; then
  echo "當前時間大於9點"
else
  echo "當前時間不大於9點"
fi

相關文章