aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-26 21:54:30 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-26 21:54:30 +1300
commit1c1e11385af1651eadb61a695d6d3fcc061ee91b (patch)
tree396a74095fb90bb2e53ac5ba2444a4d0aa76ac49 /bin
parentFix long lines in manual pages (diff)
downloaddotfiles-1c1e11385af1651eadb61a695d6d3fcc061ee91b.tar.gz
dotfiles-1c1e11385af1651eadb61a695d6d3fcc061ee91b.zip
Break up some long lines
Diffstat (limited to 'bin')
-rw-r--r--bin/eds.sh3
-rw-r--r--bin/gwp.awk3
-rw-r--r--bin/tlcs.mi54
-rw-r--r--bin/xgo.sh12
4 files changed, 14 insertions, 8 deletions
diff --git a/bin/eds.sh b/bin/eds.sh
index c692cb30..7e719e9d 100644
--- a/bin/eds.sh
+++ b/bin/eds.sh
@@ -1,4 +1,5 @@
-# Create and edit executable scripts in a directory EDSPATH (defaults to ~/.local/bin)
+# Create and edit executable scripts in a directory EDSPATH (defaults to
+# ~/.local/bin)
# Need at least one script name
if [ "$#" -eq 0 ] ; then
diff --git a/bin/gwp.awk b/bin/gwp.awk
index 60013add..fcfa5eab 100644
--- a/bin/gwp.awk
+++ b/bin/gwp.awk
@@ -14,7 +14,8 @@ BEGIN {
# match case-insensitively
word = tolower(ARGV[1])
- # Blank the first argument so Awk doesn't try to read data from it as a file
+ # Blank the first argument so Awk doesn't try to read data from it as a
+ # file
ARGV[1] = ""
# Bail out if we don't have a suitable word
diff --git a/bin/tlcs.mi5 b/bin/tlcs.mi5
index a3e17c82..519a41f8 100644
--- a/bin/tlcs.mi5
+++ b/bin/tlcs.mi5
@@ -71,8 +71,8 @@ fi
include(`include/mktd.m4')
%>
-# Execute the command, passing stdout and stderr to tl(1df) calls as appropriate
-# via named pipes
+# Execute the command, passing stdout and stderr to tl(1df) calls as
+# appropriate via named pipes
out=$td/out err=$td/err
mkfifo -- "$out" "$err" || exit
tl -p "$out_pref" -s "$out_suff" < "$out" &
diff --git a/bin/xgo.sh b/bin/xgo.sh
index e627f9c6..1b9f83da 100644
--- a/bin/xgo.sh
+++ b/bin/xgo.sh
@@ -12,7 +12,8 @@ for url do (
# Look for patterns in the URL that suggest transformations
case $url in
- # If this is a GitHub or GitLab link, swap "blob" for "raw" to get the actual file
+ # If this is a GitHub or GitLab link, swap "blob" for "raw" to get the
+ # actual file
(*://github.com/*/blob/*|*://gitlab.com/*/blob/*)
url=$(printf '%s\n' "$url" | sed 's_/blob/_/raw/_')
;;
@@ -20,7 +21,8 @@ for url do (
# Dig out the plain text for pastebin.com links
(*://pastebin.com/*)
# shellcheck disable=SC2016
- url=$(printf '%s\n' "$url" | sed 's_/[A-Za-z0-9][A-Za-z0-9]*$_/raw&_')
+ url=$(printf '%s\n' "$url" |
+ sed 's_/[A-Za-z0-9][A-Za-z0-9]*$_/raw&_')
;;
# If this is a not-direct imgur link and not to an album, swap URL
@@ -28,10 +30,12 @@ for url do (
# the MIME type will tell us)
(*://imgur.com/a/*) ;;
(*://imgur.com/*)
- url=$(printf '%s\n' "$url" | sed 's_imgur\.com_i.imgur.com_;s/$/.jpg/')
+ url=$(printf '%s\n' "$url" |
+ sed 's_imgur\.com_i.imgur.com_;s/$/.jpg/')
;;
- # If this is a YouTube video without a given start time, load it in mpv(1)
+ # If this is a YouTube video without a given start time, load it in
+ # mpv(1)
(*[/.]youtube.com/watch*[?\&]t=) ;;
(*[/.]youtube.com/watch*)
mpv -- "$url" && exit