博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
替代Linux下的rm命令
阅读量:6707 次
发布时间:2019-06-25

本文共 722 字,大约阅读时间需要 2 分钟。

方式一:自己编写脚本

编写脚本del.sh

#!/bin/bash

TMP_DIR="/tmp/trash_tmp"

mv $@ $TMP_DIR

chmod +x /home/scripts/del.sh

mkdir -p /tmp/trash_tmp

chmod 777 /tmp/trash_tmp

vim .bashrc

alias rm='sh /home/scripts/del.sh

source .bashrc

如果需要使用系统默认的rm,只要用\rm即可

方式二:安装trash

执行easy_install trash-cli安装trash-cli,实现命令行下的回收站。项目见-

trash-put           trashes files and directories.     trash-empty         empty the trashcan(s).     trash-list          list trashed file.     trash-restore       restore a trashed file.     trash-rm            remove individual files from trash can.

alias rm='echo "This is not the command you are looking for, Please Use "trash"!!!"; false'
      本文转自守护我们的幸福 51CTO博客,原文链接:http://blog.51cto.com/12085228/1981239,如需转载请自行联系原作者
你可能感兴趣的文章
centos watch sensors
查看>>
linux之路的第一篇之操作系统的基本组成
查看>>
防止xss***
查看>>
我的友情链接
查看>>
4月海外最新推荐:最佳廉价虚拟主机提供商Top5
查看>>
我的友情链接
查看>>
the operation has been canceled due to restrictions in effect on this computer
查看>>
Hitpoint:ERP系统如何帮助外贸企业实现价值最大化
查看>>
debian9升级安装到python3.6版本
查看>>
Python之道
查看>>
原生 JS 和 Jquery 处理 cookie 的插件介绍
查看>>
[嵌入式开发板] iTOP-4412实现web控制led
查看>>
Hyper-V Comparison:Windows Server 2008 R2 vs Windows Server 2012
查看>>
Nginx的防盗链
查看>>
与bind相关实验说明
查看>>
二维码数据格式
查看>>
如何计算用户在某个车站上下车,地图匹配方法
查看>>
windows的SSTP拨号搭建,常见报错的经验总结
查看>>
while循环计算1到100之和
查看>>
WordPress迁移导致图片连接失效
查看>>