fork download
  1. # Get the current hour
  2. hour=$(date +"%H")
  3. # Decide the message based on time
  4. if [ "$hour" -lt 12 ]; then
  5. echo "Good Morning! "
  6. elif [ "$hour" -lt 18 ]; then
  7. echo "Good Afternoon! "
  8. else
  9. echo "Good Evening! "
  10. fi
  11.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Good Evening!