博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
脚本学习--数字的比较
阅读量:6807 次
发布时间:2019-06-26

本文共 450 字,大约阅读时间需要 1 分钟。

以下的脚本用了数字的比较。
以下脚本放在周日用cron来执行,如果星期的数是偶数的话,就提醒把垃圾箱清理一下。
#!/bin/bash
# Calculate the week number using the date command:
weekdate=$[ $(date +"%V") % 2 ]
# Test if we have a remainder.  If not, this is an even week so send a message.
# Else, do nothing.
if [ $weekdate -eq "0" ]; then
  echo "Sunday evening, put out the garbage cans." | mail -s "laji qing li"
fi
打开邮件如下图:
日期可以自己定。
供学习!!!
本文转自 zhangzj1030 51CTO博客,原文链接:http://blog.51cto.com/tech110/233914

转载地址:http://ianwl.baihongyu.com/

你可能感兴趣的文章
php正则
查看>>
用长按键重复输入 - Mac OS X Lion
查看>>
thinkphp 语言包丢失
查看>>
.net的XML对象序列化VS WCF中xml序列化问题
查看>>
基于JSP+SERVLET的新闻发布系统(一)
查看>>
jquery左边滚动,完毕后跳转回来
查看>>
ubuntu12 环境下编译freerdp
查看>>
[置顶] Bug 11775332 - cluvfy fails with PRVF-5636 with DNS response timeout error [ID 11775332.8]
查看>>
java中的上传下载----ajaxFileUpload+struts2
查看>>
Linux Mysql 1130错误解决
查看>>
为Google Reader守夜。。。
查看>>
android 组件内部实现触摸事件,更改背景
查看>>
OpenStreetMap/Google/百度/Bing瓦片地图服务(TMS)
查看>>
有关二叉树的相关实现:建树,遍历(递归与非递归实现)
查看>>
android ViewFlipper的使用
查看>>
Python 排序
查看>>
(莱昂氏unix源代码分析导读-49) 字符缓冲区
查看>>
android分享到新浪微博,认证+发送微博,
查看>>
Android--Menus
查看>>
Changing the Output Voltage of a Switching Regulator on the Fly
查看>>