2022-06-19 18:17:57 +02:00
# RSSingle
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
Generates an RSS file from the list of other feeds (RSS/Atom/JSON). Very handy when you want to centralise the list of your feeds in one place and all your devices feed from the same place.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
## Run
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
1. Download the binary.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
``` shell
wget
```
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
2. Gives execution permissions.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
``` shell
chmod +x rssingle
```
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
3. In the same directory as the binary, you can create a local `config.yml` file in this format:
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
``` yaml
title: My RSS Feed
description: My customised RSS feed with technology news
feeds:
- https://programadorwebvalencia.com/feed/
- https://republicaweb.es/feed/
```
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
If not, you can download the example in the repository.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
4. Run the binary.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
``` shell
./rssingle
```
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
A file called `rss.xml` will be created.
2020-08-18 01:24:10 +02:00
2022-06-19 18:17:57 +02:00
## Thanks
@shymega for his original project [singlerss ](https://github.com/shymega/singlerss ).