diff options
author | Marvin Borner | 2023-01-04 15:06:49 +0100 |
---|---|---|
committer | Marvin Borner | 2023-01-04 15:06:49 +0100 |
commit | 8e3a7a0d5b0096a0e7bea934fa55ee910a7a3f0a (patch) | |
tree | 1962cadbb135d5d1c3e8a48eb126cc485cbbc32e /broogle.sh | |
parent | b1e8ffead806a10c8d6ac6912103dc6655d4d523 (diff) |
Added broogle
best name amirite
Diffstat (limited to 'broogle.sh')
-rwxr-xr-x | broogle.sh | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/broogle.sh b/broogle.sh new file mode 100755 index 0000000..3742731 --- /dev/null +++ b/broogle.sh @@ -0,0 +1,48 @@ +#!/bin/env bash +# MIT License, Copyright (c) 2023 Marvin Borner +# TODO: jq is quite slow tbh hmm + +# TODO: Custom path and absolute library path +path="std/" + +pretty() { + jq -c 'select(.type == "match") | .data' <<<"$1" | + while IFS=$"\n" read -r c; do + read file line name type < <(echo $(jq -r '.path.text, .line_number, (.lines.text | split(" ")[0]), (.lines.text | split("⧗")[1] | gsub("^\\s+|\\s+$";""))' <<<"$c" 2>/dev/null)) + desc=$(sed -n "$((line > 10 ? line - 10 : 1)),${line}p" "$file" | awk -v RS= 'END{print}' | awk '/^# /') + alia=$(sed -n "$line,$ p" "$file" | sed -n "s/^\\(.*\\) $name$/\\1/p" | xargs) + [ -z "$type" ] && type="Any" + + echo + echo -e "\e[101m\e[30mFOUND\e[0m \e[95m$name\e[0m ⧗ \e[33m$type\e[0m" + [ -z "$alia" ] || echo -e "\e[106m\e[30malso\e[0m \e[95m$alia\e[0m" + echo -e "\e[104m\e[30min\e[0m $file:$line" + [ -z "$desc" ] || echo -e "\e[3;2m$desc\e[0m" + done +} + +search_type() { + json=$(rg --json "^.* .* ⧗ $1$" "$path") + pretty "$json" +} + +search_name() { + json=$(rg --json "^$1 .*$" "$path") + pretty "$json" +} + +# TODO: Add search by comment + +case $1 in +-t) + shift + search_type "${@//->/→}" + ;; +-n) + shift + search_name "$@" + ;; +*) + echo "unknown command $1, please use -t/f/c]" + ;; +esac |