Linux 金字塔 的shell命令,linux下保留文件系统下剩余指定数目文件的shell脚本
原文出處:
http://www.jbxue.com/article/13808.html?(原創文章,轉載請注明出處)
本節內容:
保留文件系統下剩余指定數目的文件
例子:
#!/bin/bash
#-------------------------------
#Description: Back up your files
#site: www.jbxue.com
#-------------------------------
#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
總結
以上是生活随笔為你收集整理的Linux 金字塔 的shell命令,linux下保留文件系统下剩余指定数目文件的shell脚本的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: length函数的头文件_Framebu
- 下一篇: android放微信@功能,Androi