1. 程式人生 > >centos建立回收站

centos建立回收站

txt conf 使用方法 () 回收 read lin usr 添加

開始
首先在自己家的目錄創建一個文件夾用來保存刪除的文件.recycling
mkdir -p ~/.recycling
修改.bachrc文件
vim ~/.bachrc
在bachrc文件中添加下面內容

alias rm=trash        
alias rl=‘ls ~/.recycling‘  
alias ur=undelfile  
undelfile()  
{  
  mv -i ~/.recycling/$@ ./  
}  
trash()  
{  
  mv $@ ~/.recycling/  
}
cleartrash()  
{  
    read -p "Clear trash?[n]" confirm  
    [ $confirm == ‘y‘ ] || [ $confirm == ‘Y‘ ]  && /usr/bin/rm -rf ~/.recycling/*  
}

添加之後使用source命令使文件生效
source ~/.bachrc
命令使用方法:

#刪除一個文件夾,helloworld下面的文件均被移到回收站中
$rm helloworld

#刪除一個文件
$rm abc.txt

#撤銷abc.txt
$ur abc.txt

#撤銷helloworld文件夾
$ur helloworld

#列出回收站
$rl

#清空回收站
cleartrash

centos建立回收站