我最近将我的 Ubuntu 版本更新到 12.04。
我已将rm
命令别名为trash
,现在我已升级,不再有名为 的命令trash
。12.04 有等效命令吗?我只想在删除文件之前将其移至垃圾箱,这样我就不会删除我的所有代码,而我以前已经这样做了。
答案1
尝试安装 trash-cli 实用程序:
sudo apt-get install trash-cli
用法:
trash-put trash files and directories.
trash-empty empty the trashcan(s).
trash-list list trashed files.
trash-restore restore a trashed file.
trash-rm remove individual files from the trashcan.</pre>
如需了解更多信息,请查看GitHub 文档
答案2
上面的评论似乎过时或错误。似乎 list-trash -> trash-list
以下是我的 rc 文件中的内容
alias del='trash'
alias dell='trash-list'
alias undel='trash-restore'