dotfiles/scripts/ripgrep_inline
Michael Grote cad2c5337f bash: move rg* to scripts
Signed-off-by: Michael Grote <michael.grote@posteo.de>
2024-06-05 20:25:54 +02:00

18 lines
490 B
Bash
Executable file

#!/bin/bash
if [[ "$1" == "--help" ]]; then
# shellcheck disable=SC2140
echo "Finde alle Dateien die "\$1" im Inhalt haben."
echo ""
echo " Usage: rgi <string>"
return 0
fi
if [ -z "$1" ]; then
echo "[ERROR] Suchbegriff fehlt..."
return 1
fi
if command -v rg >/dev/null ; then
rg --ignore-case --hidden --glob=!.git/ "$1"
else
echo "[INFO] ripgrep ist nicht installiert... suche mit 'grep'"
grep --recursive --line-number --ignore-case --exclude-dir=".git" "$1" .
fi