发布时间:2014-06-24 19:57:41
取指定日期的上周周一和周日的日期(未指定日期的,默认是脚本zhi)#!/bin/bash if [ -z $1 ];then dst_date=`date +%F`else dst_date=$1fiyear=`date +%Y` #年,如2014.........【阅读全文】
发布时间:2014-06-24 19:57:18
先设个变量:path=/usr/share/man/man5/locale.alias.5.gz 法一,bash中特有的字符串分割法:echo ${path%/*}/http://zhidao.baidu.com/link?url=F3GgByFTYE4CIf0Zf3Z05uneaxUY9rdzXWMezXgRLeuM6LayzN3eb1xEDHL4pDiRRi3pYUrgSicYHjEytQymPq......【阅读全文】
发布时间:2014-06-19 10:45:16
#!/bin/bash#每隔指定时间,保存一次top的主要信息到日志文件#自带循环,使用nohup拉起interval=300rslt=result.logwhile [ 1 ]do timestap=`date +"%F %X"`  .........【阅读全文】