rm命令修改为移动到回收站

vi .bashrc

# .bashrc

# User specific aliases and functions

alias rm=trash
alias cp=‘cp -i‘
alias mv=‘mv -i‘
alias r="rm -i"
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi
trash()
{
    MYVAR=$@
    mv ${MYVAR#-* } /recycle
}

  附加一个定时清理回收站脚本

import os
def removeDir(dirPath):
    if not os.path.isdir(dirPath):
        return
    files = os.listdir(dirPath)
    try:
        for file in files:
            filePath = os.path.join(dirPath, file)
            if os.path.isfile(filePath):
                os.remove(filePath)
            elif os.path.isdir(filePath):
                os.rmdir(filePath)
        #os.rmdir(dirPath)
    except Exception, e:
        print e
removeDir(r‘/recycle/‘)

  crontab 添加

0 23 * * 6  python /clear.py

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。