码迷,mamicode.com
首页 > 其他好文 > 详细

自动下载图片的脚本

时间:2017-06-22 10:07:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:自己的   nbsp   sed   phi   func   文件   roc   alt   amp   

很多年前,自己写的,自己的文件丢失了,神奇的网络让我又找到了
 
#!/bin/bash
#Description:
 
# download national geographic photo of the day and set it as background
 
# wait for network connection to be established
[[ -n $1 ]] && sleep $1
 
resolution=$(xrandr |grep -o ‘current [^,]*‘|tr -d " "|sed ‘s:current::‘)
 
rss=`wget -q -O - http://feeds.nationalgeographic.com/ng/photography/photo-of-the-day/`
 
img_url=$(echo $rss|grep -o "http://[^\"]*exposure[^\"]*"|head -1)
 
img_url=$(echo $img_url|sed "s:360x270:$resolution:")
 
img=/tmp/pod.jpg
 
wget -q -O $img $img_url
 
cp /tmp/pod.jpg ~/BackGround/`date +%Y%m%d`.jpg
cp /tmp/pod.jpg ~/BackGround/today.jpg

自动下载图片的脚本

标签:自己的   nbsp   sed   phi   func   文件   roc   alt   amp   

原文地址:http://www.cnblogs.com/guochaoxxl/p/7062971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!