Linux command
rsstail 命令
网络
复制后可按需替换文件名、目录或参数。
常用示例
Follow RSS feed
rsstail -u [https://example.com/feed.rss]
Show with timestamps
rsstail -u [url] -p
Include descriptions
rsstail -u [url] -d
Follow multiple feeds
rsstail -u [url1] -u [url2]
Custom interval
rsstail -u [url] -i [300]
Show links
rsstail -u [url] -l
说明
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.
参数
- -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.
FAQ
What is the rsstail command used for?
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.
How do I run a basic rsstail example?
Run `rsstail -u [https://example.com/feed.rss]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -u _URL_ do in rsstail?
Feed URL.