代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Shell
】
删除一年前文件
作者:
/ 发布于
2017/12/19
/
711
#!/bin/bash #Description: delete files #=====定义当前年份,月份以及文件所在目录=====# currentYear=`date +%Y` currentMonth=`date +%m |awk -F'0' '{print $2}'` videodir=/var/video #======定义一个转换函数,用于将月份缩写转换为数字表示========# function month2num(){ case $file_month in Jan) file_month=1 ;; Feb) file_month=2 ;; Mar) file_month=3 ;; Apr) file_month=4 ;; May) file_month=5 ;; Jun) file_month=6 ;; Jul) file_month=7 ;; Aug) file_month=8 ;; Sep) file_month=9 ;; Oct) file_month=10 ;; Nov) file_month=11 ;; Dec) file_month=12 ;; *) echo "Oh,Are you kidding me?!" exit 1 ;; esac } #=====定义上一年年份以及上一年的所有文件列表=====# lastYear=$[$currentYear-1] lastYearFiles=`/bin/ls -l $videodir/ |grep $lastYear |awk -F' ' '{print $9}'` #===== 删除上一年的文件,今天为2013年5月,则删除2012年5月之前的所有文件(1-4月)=====# for lastfile in `echo $lastYearFiles` do file_month=`/bin/ls -l $videodir/$lastfile |awk -F' ' '{print $6}'` month2num if [ $file_month -lt $currentMonth ] then rm -rf $videodir/$lastfile fi done #=====删除非上一年以及非今年的所有文件=====# otherYearFiles=`/bin/ls -l $videodir/ |grep -v $lastYear |awk -F' ' '{print $9}'` for otherfile in `echo $otherYearFiles` do file_year_format=`/bin/ls -l $videodir/$otherfile |awk -F' ' '{print $8}'|wc -c` if [ $file_year_format -eq 5 ] then rm -rf $videodir/$otherfile fi done
试试其它关键字
同语言下
.
判断用户输入的是否为IP地址
.
根据web访问日志,封禁请求量异常的IP,如IP在半小时
.
iptables自动屏蔽访问网站频繁的IP
.
批量修改服务器用户密码
.
监控httpd的进程数,根据监控情况做相应处理
.
创建10个用户,并分别设置密码,密码要求10位且包含大
.
Expect实现SSH免交互执行命令
.
输入数字运行相应命令
.
用shell打印示例语句中字母数小于6的单词
.
扫描主机端口状态
可能有用的
.
判断用户输入的是否为IP地址
.
根据web访问日志,封禁请求量异常的IP,如IP在半小时
.
iptables自动屏蔽访问网站频繁的IP
.
批量修改服务器用户密码
.
监控httpd的进程数,根据监控情况做相应处理
.
创建10个用户,并分别设置密码,密码要求10位且包含大
.
Expect实现SSH免交互执行命令
.
输入数字运行相应命令
.
用shell打印示例语句中字母数小于6的单词
.
扫描主机端口状态
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3