18 lines
482 B
Bash
Executable file
18 lines
482 B
Bash
Executable file
#!/bin/bash
|
|
if [[ "$1" == "--help" ]]; then
|
|
# shellcheck disable=SC2140
|
|
echo "Finde alle Dateien die "\$1" im Namen haben."
|
|
echo ""
|
|
echo " Usage: rgf <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 --files --hidden --glob=!.git/ --*"$1"*
|
|
else
|
|
echo "[INFO] ripgrep ist nicht installiert... suche mit 'find'"
|
|
find . -type f -not -path '*/\.git/*' -name -- *"$1"*
|
|
fi
|