From 09e50d8a8ed4f8685c135251eed683b64cba0d9c Mon Sep 17 00:00:00 2001 From: tobias Date: Wed, 19 Feb 2025 14:42:01 +0100 Subject: [PATCH] Fix alias for fdfind --- config/shell_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/shell_aliases b/config/shell_aliases index a72b8b6..986ff77 100644 --- a/config/shell_aliases +++ b/config/shell_aliases @@ -53,6 +53,6 @@ if (hash bat 2>/dev/null) ; then export MANPAGER="sh -c 'col -bx | bat -l man -p'" fi function unsetproxy() { unset $(env | grep -Pio '^https?_proxy' | xargs) ; } -hash fdfind && alias fd=fdfind +hash fdfind 2>/dev/null && alias fd=fdfind alias dissect="dritpw tabledevil/dissect" function nsrt() { local col=$1; shift; awk -v c="$col" '{print $c, $0}' "$@" | sort -k1,1 -n | cut -d' ' -f2-; }