Skip to content

Commit

Permalink
Merge branch 'master' of github.com:TheUltimateC0der/qBittorrent.Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
UltimateC0der committed May 21, 2020
2 parents 0419ece + 3d3d3bd commit 4e06b57
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# qBittorrent.Cleanup
A small tool to cleanup torrents that do not exist anymore in qBittorrent instance


# How to use
## Install .Net Core 3.1
```
sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-runtime-3.1
```

## Download latest release
https://github.com/TheUltimateC0der/qBittorrent.Cleanup/releases

## Run

### Show help
`dotnet qBittorrent.Cleanup.dll --help`
```
qBittorrent.Cleanup 1.0.0
Copyright (C) 2020 TheUltimateC0der
-u, --user Required. Username for your qBittorrent instance
-p, --pass Required. Password for your qBittorrent instance
--url Required. Url for your qBittorrent instance
--path Required. The path to the directory containing your torrents
--dry-run Just outputs the things it would do, without actually doing it
--help Display this help screen.
--version Display version information.
```

### Delete stuff
```
dotnet qBittorrent.Cleanup.dll -u YourUserName -p YourTotallySecurePassword --path /mnt/local/downloads/torrents/qbittorrent/completed --url https://qbittorrent.mydomain.org
```

0 comments on commit 4e06b57

Please sign in to comment.