This commit is contained in:
Michael Grote 2023-02-13 09:54:31 +01:00
parent 0b61c98659
commit a8ad7f282b

View file

@ -100,7 +100,7 @@ function rgf {
rg --ignore-case --files --hidden --glob=!.git/ *"$1"*
else
echo "[INFO] ripgrep ist nicht installiert... suche mit 'find'"
find . -type f -not -path '*/\.git/*'; -name *"$1"*
find . -type f -not -path '*/\.git/*' -name *"$1"*
fi
}
function rgi {