码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 防止rm -rf 误删Shell脚本

时间:2014-07-18 08:36:13      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   os   文件   

#!/bin/bash 

#:set ff=unix 

#:set nobomb 

#-*- coding:utf-8 -*- 

###################################################################### 

## Filename:     Trash.py 

##                 

## Copyright (C) 2014.6 

## Author:        TangMeiHao@760209035@qq.com 

##                

## Description:   Shell防止rm -rf 误删 

##                 

###################################################################### 

cat /root/.bash_profile | grep "trash" &>/dev/null 

if [ $? -eq 0 ]#通过if语句判断,是否已经执行过这个脚本了,不然的话执行一次,就追加一次改内容 

then 

    echo "HAS BE DONE" 

else 

    echo  -e  " 

        mkdir -p ~/.trash 

        alias rm=trash 

        alias r=trash 

        alias rl=‘ls ~/.trash‘ 

        alias ur=undelfile 

        function undelfile() 

        { 

            mv -i ~/.trash/"\$@" ./ 

        }   

 

        trash() 

        { 

            mv  "\$@"  /root/.trash/ 

        }" >>/root/.bash_profile 

 

    source /root/.bash_profile #source该文件,生效了 

fi 

 

#删除后的文件就在/root/.trash  



来源:http://iotos.iteye.com/blog/2092948





Linux 防止rm -rf 误删Shell脚本,布布扣,bubuko.com

Linux 防止rm -rf 误删Shell脚本

标签:des   style   blog   http   os   文件   

原文地址:http://www.cnblogs.com/aserlinux/p/3851103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!