Crates.io | redelete |
lib.rs | redelete |
version | 0.3.1 |
source | src |
created_at | 2020-02-09 02:38:01.64331 |
updated_at | 2020-02-11 07:03:16.858258 |
description | Redelete deletes all your reddit comments and submissions, with optional filters for skipping. |
homepage | |
repository | https://github.com/ardeaf/redelete |
max_upload_size | |
id | 206532 |
size | 163,863 |
Archlinux:
# Manually from the AUR
git clone https://aur.archlinux.org/redelete.git && cd redelete
makepkg -si
# Prebuilt binary
git clone https://aur.archlinux.org/redelete-bin.git && cd redelete-bin
makepkg -si
Everyone else:
cargo install redelete
// authorize your reddit account with this app:
$ redelete authorize
// add configuration options to the username you just authorized
// add subreddit exclusions (space separated list of subreddits)
$ redelete config <username> -a webdev reactjs rust
// add a minimum score to avoid deleting posts higher than this score
$ redelete config <username> -s 500
// add a max time to avoid deleting posts made newer than this time (in hours)
$ redelete config <username> -t 5
// do them all at once
$ redelete config <username> -a webdev reactjs rust -s 500 -t 5
// dry-run the app
$ redelete run -d <username>
// run the app and actually delete your posts
$ redelete run <username>
// view your config options for any given username
$ redelete view <username>
// help
$ redelete -h
$ redelete run -h
$ redelete config -h
$ redelete view -h
This is my first rust app, so all feedback is welcome (negative or positive).
chown -R <YOUR_USERNAME>:<ANY_GROUP> ~/.config/redelete
and chmod -R 700 ~/.config/redelete
once you've authorized any reddit accounts. If someone gets root access or access to your login you're screwed, though I imagine you'd have much more to lose than your reddit account in this scenario.