From dbd02d77939c414b67b808fab0d5624fb836421b Mon Sep 17 00:00:00 2001 From: Moviuro Date: Thu, 23 Apr 2015 00:08:05 +0200 Subject: [PATCH] zshrc: add support for `fetch' in simple-extract() `fetch` is FreeBSD's default utility to download things --- etc/zsh/zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.1.4