您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
317 B

  1. #!/bin/bash
  2. source pa-lib
  3. WFILE=/tmp/weather
  4. LOCATION="BRQ"
  5. info "Fetching weather report for $LOCATION."
  6. weather -q -m $LOCATION > $WFILE
  7. pa-preheat
  8. pa-announcement
  9. pa-say "Here is the latest weather report:"
  10. cat $WFILE
  11. pa-say -f "$WFILE" -l 80
  12. pa-say "Have a great day!"
  13. pa-announcement-quick
  14. pa-shutdown