Skip to content

Instantly share code, notes, and snippets.

@cherryramatisdev
Last active June 26, 2024 01:28
Show Gist options
  • Save cherryramatisdev/ad30d3b756c8e8b63971c2094fa6b3a8 to your computer and use it in GitHub Desktop.
Save cherryramatisdev/ad30d3b756c8e8b63971c2094fa6b3a8 to your computer and use it in GitHub Desktop.
Como pesquisar na web a partir do terminal (PT-BR)
  1. Certifique-se de ter instalado a CLI w3m
  2. Crie um script como websearch com o seguinte conteúdo:
#!/bin/sh

consulta=""
para argumento em "$@"; fazer
    consulta="$consulta+$arg"
feito
query=${query:1} # remove o início +

url="https://lite.duckduckgo.com/lite/?kd=-1&kp=-1&q=$query"

w3m "$url"
  1. (Opcional) Crie um alias para facilitar o gerenciamento e coloque em seu ~/.zshrc ou ~/.bashrc:
alias '?'=pesquisa na web
  1. Fique feliz em usá-lo!
? como usar o github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment