欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux下保留文件系统下剩余指定数目文件的shell脚本

程序员文章站 2023-11-29 23:59:40
本节内容:保留文件系统下剩余指定数目的文件 例子: 复制代码 代码如下:#!/bin/bash #------------------------------- #de...

本节内容:
保留文件系统下剩余指定数目的文件

例子:

复制代码 代码如下:

#!/bin/bash
#-------------------------------
#description: back up your files
#site: www.jb51.net
#-------------------------------

#shell 变量
path_source=/mnt/fifth/shell
path_backup=/mnt/fifth/backup/shellbackup
path_delete=/mnt/fifth/tmp/rubbish/
limit_num=15

filebackup()
{
set -x
#备份文件
#cp -r $1 $2/shell-`date +%y-%m-%d-%h-%m-%s`
count=`ls $1 | wc -w`

if [ "$count" -gt "$3" ];then
    echo "-----------------limit is : $3 ----------------------"
    echo "-----------------the number of files is : $count -------"
    num=`expr $count - $3`
    echo "-----------------the excess number of files is : $num ---------"
#移动文件
    ls $1 -1rt | head -n $num|xargs -n1 -i mv $1/{} $2
    set +x
    ls -1rt $2
    echo "-----------------moving end!-----------------"
else
    ls -1rt $2
    echo "-----------------the file is too little!-------------------"
fi
}

#备份shell脚本
filebackup $path_backup $path_delete $limit_num