44 lines
2.4 KiB
Markdown
44 lines
2.4 KiB
Markdown
Command Line Interface (CLI)
|
|
============================
|
|
RSS Guard offers CLI. For overview of its features, run `rssguard --help` in your terminal. You will see the overview of the interface.
|
|
|
|
```
|
|
Usage: rssguard [options] [url-1 ... url-n]
|
|
RSS Guard
|
|
|
|
Options:
|
|
-h, --help Displays overview of CLI.
|
|
-v, --version Displays version of the application.
|
|
-l, --log <log-file> Write application debug log to file. Note that
|
|
logging to file may slow application down.
|
|
-d, --data <user-data-folder> Use custom folder for user data and disable
|
|
single instance application mode.
|
|
-s, --no-single-instance Allow running of multiple application
|
|
instances.
|
|
-g, --no-debug-output Disable just "debug" output.
|
|
-n, --no-standard-output Completely disable stdout/stderr outputs.
|
|
-w, --lite Force lite variant of application.
|
|
-t, --style <style-name> Force some application style.
|
|
-p, --adblock-port <port> Use custom port for AdBlock server. It is
|
|
highly recommended to use values higher than
|
|
1024.
|
|
-u, --user-agent <user-agent> User custom User-Agent HTTP header for all
|
|
network requests.
|
|
--threads <count> Specify number of threads. Use --help to see
|
|
the maximum allowed number of threads.
|
|
|
|
Arguments:
|
|
urls List of URL addresses pointing to individual
|
|
online feeds which should be added.
|
|
```
|
|
|
|
You can add feeds to RSS Guard by passing URLs as the command line parameters too. Feed [URI scheme](https://en.wikipedia.org/wiki/Feed_URI_scheme) is supported, so that you can call RSS Guard like this:
|
|
|
|
```powershell
|
|
rssguard.exe "feed://archlinux.org/feeds/news"
|
|
rssguard.exe "feed:https//archlinux.org/feeds/news"
|
|
rssguard.exe "https://archlinux.org/feeds/news"
|
|
```
|
|
|
|
In order to easily add the feed directly from your web browser of choice, without copying and pasting the URL manually, you have to open RSS Guard with feed URL passed as an argument. There are [browser extensions](https://addons.mozilla.org/en-US/firefox/addon/open-with/) which will allow you to do it.
|