LinuxCommandLibrary

rsstail

Monitor RSS feeds like tail monitors files

TLDR

Follow RSS feed

$ rsstail -u [https://example.com/feed.rss]
copy
Show with timestamps
$ rsstail -u [url] -p
copy
Include descriptions
$ rsstail -u [url] -d
copy
Follow multiple feeds
$ rsstail -u [url1] -u [url2]
copy
Custom interval
$ rsstail -u [url] -i [300]
copy
Show links
$ rsstail -u [url] -l
copy

SYNOPSIS

rsstail [-u url] [-i seconds] [-d] [-l] [options]

DESCRIPTION

rsstail monitors RSS feeds from the command line, functioning like tail -f for web feeds. It periodically checks specified feed URLs and prints new items as they appear, providing a simple way to track updates without a full feed reader.
Multiple feeds can be monitored simultaneously using repeated -u flags, and the check interval is configurable with -i (in seconds). Output can include titles, descriptions (-d), links (-l), and timestamps (-p), or just titles by default. The -1 flag performs a single check and exits, useful for scripted feed polling.

PARAMETERS

-u URL

Feed URL.
-i SEC
Check interval.
-d
Show description.
-l
Show links.
-p
Show timestamps.
-n NUM
Initial items.
-N
No initial items.
-1
One check, then exit.

CAVEATS

Network dependent. Feed format matters. May miss items between checks.

HISTORY

rsstail was created to provide a tail-like interface for monitoring RSS feed updates from the command line.

SEE ALSO

curl(1), tail(1), newsboat(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community