From: Moviuro Date: Wed, 22 Apr 2015 22:08:05 +0000 (+0200) Subject: zshrc: add support for `fetch' in simple-extract() X-Git-Tag: v0.12.0~4 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=dbd02d77939c414b67b808fab0d5624fb836421b zshrc: add support for `fetch' in simple-extract() `fetch` is FreeBSD's default utility to download things --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index be62172..8e1ec13 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3306,8 +3306,10 @@ simple-extract() { WGET_CMD="curl -L -s -o -" elif check_com wget; then WGET_CMD="wget -q -O -" + elif check_com fetch; then + WGET_CMD="fetch -q -o -" else - print "ERROR: neither wget nor curl is installed" >&2 + print "ERROR: neither wget, curl nor fetch is installed" >&2 RC=$((RC+4)) continue fi