終端前后對比:
如果你感興趣,打開自己終端開搞.
輸入以下命令
cd /etc
sudo pico motd
輸入密碼,進入編輯,內(nèi)容可自定義(寫一些自己比較喜歡的內(nèi)容)
退出 control+X
保存 Y
enter鍵
修改文件權限,為方便后面腳本更新內(nèi)容
sudo chmod 666 motd
問題來了,自己寫的東西早晚都有看煩的時候,下面的Python腳本可以幫助你每天更新歡迎語
#!/usr/bin/env python
# coding: utf-8
import commands
import requests
import json
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
"""
獲取天氣數(shù)據(jù)
獲取每日一句數(shù)據(jù)
將所需數(shù)據(jù)寫入文件
執(zhí)行shell命令,將文件內(nèi)容寫入/etc/motd
"""
if __name__ == '__main__':
try:
daily = open("daily.txt", 'w')
weatherUrl = "http://www.sojson.com/open/api/weather/json.shtml?city=北京"
r = requests.get(weatherUrl)
if r.status_code == 200:
resultJson = json.loads(r.text)
data = resultJson['data']
# 空氣質量
quality = data['quality']
# 濕度
humidity = data['shidu']
pm25 = data['pm25']
# 戶外
ganmao = data['ganmao']
today = data['forecast'][0]
# 最高氣溫
high = today['high']
# 最低氣溫
low = today['low']
# 建議
notice = '[' + today['type'] + ']' + today['notice']
# 日期
date = today['date']
daily.write("今天是:" + date + '\n')
daily.write("濕度:" + humidity + '\n')
daily.write("pm25:" + str(pm25) + '\n')
daily.write(high + '\n')
daily.write(low + '\n')
daily.write("空氣質量:" + quality + '\n')
daily.write(notice + '\n')
daily.write("戶外建議:" + ganmao + '\n')
# 每日一句
url = "http://open.iciba.com/dsapi/"
r = requests.get(url)
if r.status_code == 200:
resultJson = json.loads(r.text)
note = resultJson['note']
content = resultJson['content']
daily.write(content + '\n')
daily.write(note + '\n')
daily.close()
commands.getstatusoutput('cp daily.txt /etc/motd')
except:
pass
找到自己保存的腳本文件,執(zhí)行Python命令
python 腳本文件
重新打開終端,看一下!當天的天氣,還有每日一句的英語!
是不是有點逼格!
添加定時任務更省心
crontab -e
0 9 * * * python 腳本文件路徑/dailyRemark.py
路徑一定要填對
每天定時更新數(shù)據(jù),爽歪歪
特別感謝公共接口提供方!
最后福利附上自己mac上的終端背景圖