diff options
author | Jonas Stein <news@jonasstein.de> | 2023-11-09 01:05:41 +0100 |
---|---|---|
committer | Heiko Becker <mail@heiko-becker.de> | 2024-03-11 22:16:58 +0000 |
commit | fc67300bb7af9f1f5cee16e736a16df9b509c4e5 (patch) | |
tree | c580e1d91f570ca83f76e3e0e9f852735b18955e | |
parent | 3ae982051d7b6c9312f19618ff63c4b58f5ea5cc (diff) | |
download | wgetpaste-fc67300bb7af9f1f5cee16e736a16df9b509c4e5.tar.gz |
fix typo and formatting
Changed Url to URL
Adjusted spacing
Dropped superflous colons
Old style:
wgetpaste -S
Services supported: (case sensitive):
Name: | Url:
==========|=================
0x0 | http://0x0.st
New style:
wgetpaste -S
Services supported: (case sensitive):
Name | URL
==========|=================
0x0 | http://0x0.st
-rwxr-xr-x | wgetpaste | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -614,9 +614,9 @@ showservices() { [[ ${#s} -gt $max ]] && max=${#s} done ((INDV=3+max+IND)) - engine=" $E[${INDV}G| Pastebin engine:" + engine=" $E[${INDV}G| Pastebin engine" fi - echo " Name: $E[${IND}G| Url:$engine" + echo " Name $E[${IND}G| URL$engine" echo -ne " "; for((s=3;s<${INDV:-${IND}}+17;s++)); do (( $s == IND-1 || $s == INDV-1 )) && echo -ne "|" || echo -ne "="; done; echo for s in $SERVICES; do [[ $s = $DEFAULT_SERVICE ]] && d="*" || d=" " |