An open API service indexing awesome lists of open source software.

https://github.com/wicksome/trash-cli

Move files and folders to the trash
https://github.com/wicksome/trash-cli

bash cli linux macos rm shell trash utility

Last synced: 3 months ago
JSON representation

Move files and folders to the trash

Awesome Lists containing this project

README

          

# Deprecated

# trash-cli [![Build Status](https://travis-ci.org/wicksome/trash-cli.svg?branch=master)](https://travis-ci.org/wicksome/trash-cli)

> Move files and folders to the trash

WIP

## Install

1. git clone
2. if not exist `$HOME/.Trash` directory, make directory.
3. set alias to `bash_profile` or `bashrc`

```bash
alias trash='/PATH/trash-cli/trash'
```

## Usage

```bash
$ trash --help
```

```bash
# remove files
$ trash [file ...]
# help
$ trash -h
# clear trash
$ trash -c
# force clear trash
$ trash -cf
# force clear trash with verbose option
$ trash -cfv
# list trash
$ trash -l
# list all trash
$ trash -al
# rm -rf
$ trash -rf [file ...]
```
## Tip

Add `alias rm=trash` to your `.zshrc`/`.bashrc` to reduce typing & safely trash files: `$ rm unicorn.png`.

## License

MIT © [Yeongjun Kim](https://wickso.me)