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

https://github.com/aitthi/safe-rm

safe-rm is a simple wrapper around rm that prevents you from accidentally deleting files.
https://github.com/aitthi/safe-rm

Last synced: 4 months ago
JSON representation

safe-rm is a simple wrapper around rm that prevents you from accidentally deleting files.

Awesome Lists containing this project

README

        

# Safe rm

[![Version](https://img.shields.io/crates/v/saferm?style=for-the-badge)](https://crates.io/crates/saferm)
[![License](https://img.shields.io/crates/l/saferm?style=for-the-badge)](https://crates.io/crates/saferm)

saferm is a simple wrapper around rm that prevents you from accidentally deleting files.

## Installation
```bash
cargo install saferm
```
## Usage
```bash
saferm [FLAGS] [OPTIONS] ...
```

## Alias in .bashrc or .zshrc etc.
```bash
alias rm="saferm"
```