fix typo: url -> URL - sfeed_curses - sfeed curses UI (now part of sfeed, development is in sfeed)
(HTM) git clone git://git.codemadness.org/sfeed_curses
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 8d1ba2bee49f27f6d8d8273d075924b0f76b8496
(DIR) parent b624558593a0d366e17c083a7a238203d5a52472
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Wed, 7 Jul 2021 18:14:40 +0200
fix typo: url -> URL
Diffstat:
M README | 16 ++++++++--------
M sfeed_markread.1 | 8 ++++----
2 files changed, 12 insertions(+), 12 deletions(-)
---
(DIR) diff --git a/README b/README
@@ -6,7 +6,7 @@ sfeed_curses is a curses UI front-end for sfeed.
It shows the TAB-separated feed items in a graphical command-line UI. The
interface has a look inspired by the mutt mail client. It has a sidebar panel
for the feeds, a panel with a listing of the items and a small statusbar for
-the selected item/url. Some functions like searching and scrolling are
+the selected item/URL. Some functions like searching and scrolling are
integrated in the interface itself.
@@ -30,8 +30,8 @@ Like the format programs included in sfeed you can run it like this:
By default sfeed_curses marks the items of the last day as new/bold. To manage
read/unread items in a different way a plain-text file with a list of the read
-urls can be used. To enable this behaviour the path to this file can be
-specified by setting the environment variable $SFEED_URL_FILE to the url file:
+URLs can be used. To enable this behaviour the path to this file can be
+specified by setting the environment variable $SFEED_URL_FILE to the URL file:
SFEED_URL_FILE=~/.sfeed/urls sfeed_curses ~/.sfeed/feeds/*
@@ -64,7 +64,7 @@ Run-time dependencies
Optional run-time dependencies
------------------------------
-- xclip for yanking the url or enclosure. See $SFEED_YANKER to change it.
+- xclip for yanking the URL or enclosure. See $SFEED_YANKER to change it.
- xdg-open, used as a plumber by default. See $SFEED_PLUMBER to change it.
- awk, used by the sfeed_content and sfeed_markread script.
See the ENVIRONMENT VARIABLES section in the man page to change it.
@@ -129,10 +129,10 @@ or
The specified script should be in $PATH or an absolute path.
-Example of a `markallread.sh` shellscript to mark all urls as read:
+Example of a `markallread.sh` shellscript to mark all URLs as read:
#!/bin/sh
- # mark all items/urls as read.
+ # mark all items/URLs as read.
tmp=$(mktemp)
(cat ~/.sfeed/urls; cut -f 3 ~/.sfeed/feeds/*) | \
@@ -146,10 +146,10 @@ Example of a `syncnews.sh` shellscript to update the feeds and reload them:
sfeed_update && pkill -SIGHUP sfeed_curses
-Open an url directly in the same terminal
+Open an URL directly in the same terminal
-----------------------------------------
-To open an url directly in the same terminal using the text-mode lynx browser:
+To open an URL directly in the same terminal using the text-mode lynx browser:
SFEED_PLUMBER=lynx SFEED_PLUMBER_INTERACTIVE=1 sfeed_curses ~/.sfeed/feeds/*
(DIR) diff --git a/sfeed_markread.1 b/sfeed_markread.1
@@ -1,4 +1,4 @@
-.Dd August 2, 2020
+.Dd July 7, 2021
.Dt SFEED_MARKREAD 1
.Os
.Sh NAME
@@ -9,13 +9,13 @@
.Ar read | Ar unread
.Sh DESCRIPTION
.Nm
-expects to receive a plain-text list with one or more urls from stdin.
-The received format from stdin is one url per line.
+expects to receive a plain-text list with one or more URLs from stdin.
+The received format from stdin is one URL per line.
.Sh ENVIRONMENT VARIABLES
.Bl -tag -width Ds
.It Ev SFEED_URL_FILE
This variable must be set to use as the path to the file containing a
-plain-text list of read urls.
+plain-text list of read URLs.
.El
.Sh EXIT STATUS
.Ex -std