linux垃圾桶项目

#下载github上的垃圾桶项目,并把程序添加至系统级
$ yum -y install git
$ git clone https://github.com/lagerspetz/linux-stuff
$ mv linux-stuff/scripts/saferm.sh /usr/bin/
#设置"rm"的别名为saferm.sh <在文件末尾加>
vim .bashrc
alias rm='saferm.sh'




#执行以下命令使别名生效
source .bashrc




#创建一个文件
$ touch test_file




#利用rm删除
$ rm -rf test_file
Moving test_file to /root/Trash




#进入/root/Trash目录中,并且查看其中是否存在tst_file文件
$ cd /root/Trash
$ ls
test_file




#安全删除test_file文件
$ pwd
/root/Trash
$ rm -rf test_file
Moving test_file to /root/Trash
mv: "test_file" Ө"/root/Trash/test_file" 
test_file could not be moved to trash. Unsafe delete (y/n)?
Deleting test_file




#此时查看目录,test_file就被删除了

你可能感兴趣的:(linux垃圾桶项目)