From 9f91d5a2a3ad51807f53fc8b95d9559b448ac177 Mon Sep 17 00:00:00 2001 From: imnyang Date: Fri, 23 May 2025 22:50:56 +0900 Subject: [PATCH] README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b2f7998 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# 🗑️ tsh - Move files to Trash Bin + +`tsh` is a simple command-line tool written in Rust that moves files and folders to the **Trash Bin**, instead of permanently deleting them. + +## 🔧 Installation + +Make sure you have [Rust](https://www.rust-lang.org/tools/install) installed. + +```sh +cargo install tsh +``` + +If installing from a local directory: + +```sh +git clone https://github.com/imnyang/tsh.git +cd tsh +cargo install --path . +``` + +## 🚀 Usage +```sh +tsh [more_files_or_folders...] +``` + +```sh +tsh file.txt +tsh folder/ notes.md image.png +``` + +## 📦 Features +- ✅ Safe delete: files go to Trash, not permanently removed. + +- 🔧 Built on the reliable [trash](https://crates.io/crates/trash) crate. +