首页 > 其他 > 详细

shell初学

时间:2014-09-21 16:27:52      阅读:229      评论:0      收藏:0      [点我收藏+]

超简单的一段shell代码,查看电脑属性,删除无效安装包,查看天气。FYI 

#!/bin/bash
echo -e \n
echo "Hello,`whoami`"
echo "-----------------------------------------------------------------------"
echo "Now time is:`date`"
#wheather info
if [ -e "101020100.html" ];then
rm -f 101020100.html
wget http://www.weather.com.cn/data/cityinfo/101020100.html -q
else
wget http://www.weather.com.cn/data/cityinfo/101020100.html -q
fi
var=$(cat 101020100.html)
#echo "天气信息:" $var
echo $var | awk -F " {print $6 "   " $14 " ~ " $18 "   " $22 " [ " $34 " ] "}
echo "-----------------------------------------------------------------------"
echo -e \n
echo "-----------------------------------------------------------------------"
echo -e "The PC Info:"
uname -a
echo "-----------------------------------------------------------------------"
echo -e \n
echo "-----------------------------------------------------------------------"
echo Shall you clean trash?
echo "Please input (y\n)"
read char
if [ $char == y ];then
#delete useless install package
sudo apt-get autoclean
sudo apt-get clean
sudo apt-get autoremove
else
echo "You selected no"
fi
echo "-----------------------------------------------------------------------"
echo "Press anykey to exit..."

 

shell初学

原文:http://www.cnblogs.com/Tiago/p/3984657.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!