centos建立回收站

有些话、适合烂在心里 提交于 2019-11-26 02:08:45

开始
首先在自己家的目录创建一个文件夹用来保存删除的文件.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
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!