I'm just gonna alias /=rg
I'm just gonna alias /=rg
Fili (@filiksyos)
Openclaw 팁: 에이전트가 모든 세션을 저장하며 내장된 채팅 기록 검색 기능이 있지만 대부분의 VPS에서는 기본 활성화되어 있지 않다고 안내합니다. ripgrep과 jq를 설치(예: sudo apt install ripgrep jq)하면 채팅 히스토리를 검색할 수 있어 지난주 대화를 조회할 수 있다고 설명합니다. 개발/운영 팁성 기술 업데이트입니다.
To search for Google API keys recursively in the current folder and its sub-folders with ripgrep:
rg 'AIza[0-9A-Za-z\-_]{35}' -o
Also shared on Shodan Snippets:
https://snippets.shodan.io/c/FHw2r7wWIFmjVAfG
#Security #OneLiner #Google #GoogleAPIKeys #APIkeys #ripgrep #Regex #BugBounty #Snippet
Okay, there's one thing I don't like about ripgrep. rg is too similar to rm 😅
Here is mine :
1. #git 
2. #lsd https://github.com/lsd-rs/lsd 
3. #cat (which is actually an alias over #bat https://github.com/sharkdp/bat 🦇)
4. #rg #RipGrep https://github.com/BurntSushi/ripgrep 🪦
5. #Nix https://nixos.org 
I’ve been leaning on ripgrep a lot lately. I always knew it existed, but I never fully appreciated it until I started working with larger, fast-changing codebases. Now rg is one of my most-used commands.
What I love most is that it respects .gitignore, so it skips things like venv and node_modules without extra effort. And honestly, the overall UX is just fantastic.
How can #ripgrep be so abnormally fast?
Searching through my 87GB source code directory in half a second.
Like... WHAT?