Misc updates

This commit is contained in:
David Tomaschik
2026-02-18 16:10:06 -08:00
parent cdbc40d1e8
commit 9ab1f9c298
14 changed files with 243 additions and 26 deletions

View File

@@ -15,3 +15,17 @@ if command -v ffuf >/dev/null 2>&1 ; then
alias ffuf-quick="ffuf -c -w $HOME/tools/seclists/Discovery/Web-Content/quickhits.txt"
fi
fi
if grep --help 2>/dev/null | grep -q 'color'; then
# Should have a better way to check for GNU versions
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
fi
# Detect which `ls` flavor is in use and use the right flag for colors.
if ls --help 2>&1 | grep -q -- '--color'; then
alias ls='ls --color=auto' # GNU `ls`
elif [ "$(uname)" = "Darwin" ]; then
alias ls='ls -G' # macOS `ls`
fi