2020-04-21 20:41:28 +00:00
|
|
|
# KIT-ILIAS-downloader
|
|
|
|
|
|
|
|
Download content from ILIAS. That includes:
|
|
|
|
|
2020-04-21 21:03:30 +00:00
|
|
|
* files (latest version)
|
2020-04-21 20:41:28 +00:00
|
|
|
* Opencast lectures
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2020-04-21 21:49:24 +00:00
|
|
|
Go to the [releases](../../releases) and get the executable for your operating system. Alternatively compile from source:
|
2020-04-21 20:41:28 +00:00
|
|
|
```sh
|
|
|
|
$ git clone https://github.com/FliegendeWurst/KIT-ILIAS-downloader
|
|
|
|
...
|
|
|
|
$ cd KIT-ILIAS-downloader
|
|
|
|
$ cargo build --release
|
|
|
|
...
|
|
|
|
$ cp target/release/KIT-ILIAS-downloader [directory in $PATH]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2020-04-21 21:03:30 +00:00
|
|
|
```sh
|
|
|
|
$ KIT-ILIAS-downloader --help
|
|
|
|
KIT-ILIAS-downloader 0.1.0
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
KIT-ILIAS-downloader [FLAGS] --output <output>
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-f, Re-download already present files
|
|
|
|
-h, --help Prints help information
|
|
|
|
-n, --no-videos Do not download Opencast videos
|
|
|
|
-s, --skip-files Do not download files
|
|
|
|
-V, --version Prints version information
|
2020-04-21 21:35:12 +00:00
|
|
|
-v Verbose logging (print objects downloaded)
|
2020-04-21 21:03:30 +00:00
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-o, --output <output> Output directory
|
|
|
|
```
|
2020-04-21 20:41:28 +00:00
|
|
|
|
|
|
|
## Credits
|
|
|
|
|
|
|
|
Inspired by https://github.com/brantsch/kit-ilias-fuse.
|