dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 9e641fe55d91e3493e13cc84997f1eae191dc0b8
parent 6e870b976c4d29fdc4a0ba11914ad32a73234572
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Mon, 12 Oct 2020 23:42:33 +0200

curlhub: fix name in help text

Former-commit-id: 8f352481ee40466018ec132a02be857803503c46
Diffstat:
Mscripts/curlhub | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/curlhub b/scripts/curlhub @@ -1,6 +1,6 @@ #!/bin/sh command -v curl 1>/dev/null 2>&1 || { printf "curl not installed\n" && exit 1; } -[ $# -lt 2 ] && { printf "Usage:\twgethub username/repository filename [branch]\n" && exit 1; } +[ $# -lt 2 ] && { printf "Usage:\tcurlhub username/repository filename [branch]\n" && exit 1; } lnk="https://raw.githubusercontent.com/$1/${3:-master}/$2" printf "%s\n" "Saving to current directory from $lnk" curl -LO "$lnk"