在 Linux 用 trash-cli 取代 rm 防止誤刪檔案

介紹 Linux 一套軟件 trash-cli, 可以在 Terminal 裡將要刪除的檔案放在垃圾桶裡,防止誤刪。

昨日分享了在 macOS 用 trash 取代 rm 刪除文件的文章。可以將要刪除的檔案放在垃圾桶 ( Bin / Trash / Recycle Bin) 裡,以便在需要時可以尋回。

今天輪到 Linux 了,分享的是 trash-cli.

安裝方法

對於 Debian / Ubuntu 的使用者,你可以透過以下指令安裝:

1
sudo apt install trash-cli

使用方法

隨後就有多幾個簡單 command 可以對 trash can 進行操作:

1
2
3
4
5
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.

其中 trash-put 可以簡化為 trash 來執行。

建議前往該 Github Repo 看一遍 Usage.

comments powered by Disqus