From 5333064789799587bf68420ff3247db74423feb0 Mon Sep 17 00:00:00 2001 From: tke Date: Wed, 24 May 2023 12:49:30 +0200 Subject: [PATCH] Fixed unset proxy alias (now a function) --- config/shell_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/shell_aliases b/config/shell_aliases index 4c1cc84..f7384de 100644 --- a/config/shell_aliases +++ b/config/shell_aliases @@ -53,5 +53,5 @@ fi if (hash bat 2>/dev/null) ; then export MANPAGER="sh -c 'col -bx | bat -l man -p'" fi -alias unsetproxy="unset $(env | grep -Pio '^https?_proxy' | xargs)" +function unsetproxy() { unset $(env | grep -Pio '^https?_proxy' | xargs) ; } hash fdfind && alias fd=fdfind