标签:pre source trash 命令 自己 撤销 cling ras $@
开始mkdir -p ~/.recycling
vim ~/.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
标签:pre source trash 命令 自己 撤销 cling ras $@
原文地址:http://blog.51cto.com/12832314/2147124