Files
svr/usr/bin/search-google
T

13 lines
226 B
Bash
Raw Normal View History

2026-04-01 11:51:07 +02:00
#!/usr/bin/env bash
2026-04-01 11:43:37 +02:00
2026-04-01 11:51:07 +02:00
q="$*"
[ -z "$q" ] && q="$(cat)"
q="${q// /+}"
2026-04-01 11:31:10 +02:00
2026-04-01 11:54:53 +02:00
curl -s -L \
-A "Mozilla/5.0" \
-b "CONSENT=YES+1" \
"https://www.google.com/search?q=$q&hl=en&udm=14" \
| grep -oP '(?<=href="/url\?q=)[^&]+' \
2026-04-01 11:51:07 +02:00
| head -n 5