Skip to content

Commit

Permalink
Use the short version of links to Stack Overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavid committed Nov 25, 2023
1 parent 84d95be commit 9f0d10d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions app/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# vi:et lbr noet sw=2 ts=2 tw=79 wrap
# Copyright 2022-2023 David Rabkin
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC2039,SC3043 # Uses local variables.
# shellcheck disable=SC1091,SC2034 # File not following, appears unused.
BASE_APP_USAGE="$(
Expand All @@ -18,7 +18,7 @@ BASE_APP_USAGE="$(
}
readonly \
BASE_APP_USAGE \
BASE_APP_VERSION=0.9.20230825 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230405
. base.sh

Expand Down
6 changes: 3 additions & 3 deletions app/install
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# Uses Unix shell framework shellbase:
# https://github.com/rdavid/shellbase/
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC3043,SC2034 # Uses local variables, appears unused.
readonly \
BASE_APP_VERSION=0.9.20231111 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230505 \
DST=/usr/local/bin \
REL=0.9.20231111 \
Expand Down
6 changes: 3 additions & 3 deletions app/myip
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Copyright 2022-2023 David Rabkin
# Reports external IP in a loop.
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC3043 # Uses local variables.
# shellcheck disable=SC1091,SC2034 # File not following, appears unused.
set -- "$@" --quiet
readonly \
BASE_APP_VERSION=0.9.20230604 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230505
. base.sh

Expand Down
6 changes: 3 additions & 3 deletions app/speed
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# vi:et lbr noet sw=2 ts=2 tw=79 wrap
# Copyright 2020-2023 David Rabkin
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC3043 # Uses local variables.
# shellcheck disable=SC1091,SC2034 # File not following, appears unused.
set -- "$@" --quiet
readonly \
BASE_APP_VERSION=0.9.20231112 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230505
. base.sh

Expand Down
6 changes: 3 additions & 3 deletions app/tru
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
# content and than adds it again. It is useful to automatically increase a
# ratio.
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC3043 # Uses local variables.
# shellcheck disable=SC1091,SC2034 # File not following, appears unused.
readonly \
BASE_APP_VERSION=0.9.20230312 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230312
. base.sh

Expand Down
6 changes: 3 additions & 3 deletions app/ydata
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# vi:et lbr noet sw=2 ts=2 tw=79 wrap
# Copyright 2019-2023 David Rabkin
# The script uses local variables which are not POSIX but supported by most
# shells, see more:
# https://stackoverflow.com/questions/18597697/posix-compliant-way-to-scope-variables-to-a-function-in-a-shell-script
# shells, see:
# https://stackoverflow.com/q/18597697
# shellcheck disable=SC3043 # Uses local variables.
# The script downloads all new video from pre-configured acoounts in
# ytda.lst. It updates IDs of downloaded files at done.txt (ytda.dne in Github).
Expand All @@ -17,7 +17,7 @@ export \

# shellcheck disable=SC2034 # Variable appears unused.
readonly \
BASE_APP_VERSION=0.9.20230713 \
BASE_APP_VERSION=0.9.20231126 \
BASE_MIN_VERSION=0.9.20230315

# shellcheck disable=SC1091 # File not following.
Expand Down

0 comments on commit 9f0d10d

Please sign in to comment.