https://github.com/teegre/rssp
Quick rss feed parser.
https://github.com/teegre/rssp
linux-shell-script rss-feed-parser
Last synced: 5 days ago
JSON representation
Quick rss feed parser.
- Host: GitHub
- URL: https://github.com/teegre/rssp
- Owner: teegre
- License: other
- Created: 2025-10-13T18:20:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-10-15T16:44:56.000Z (6 months ago)
- Last Synced: 2025-10-16T11:39:19.183Z (6 months ago)
- Topics: linux-shell-script, rss-feed-parser
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rssp
A quick rss feed parser.
## Install
```
$ git clone https://github.com/teegre/rssp
$ cd rssp
# make install
```
## Uninstall
```
# make uninstall
```
## Usage
```
rssp version 0.3
quick rss feed parser.
usage: rssp [-t]
options:
-t display rss channel's title only.
```
## Example
### Get rss feed title:
```
$ rssp -t https://example.com/feeds/news/
Example dot com: Recent news updates
```
### Get rss feed entries
```
$ rssp https://example.com/feeds/news/
2024/07/01 Entry 1
https://example.com/news/entry1/
2024/04/15 Entry 2
https://example.com/news/entry2/
2024/04/07 Entry 3
https://example.com/news/entry3/
```