To escape a literal dollar sign in a ripgrep replacement string, use `$$`.
Three of my most favorite aliases:
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
You can use curl to download files in your terminal if you don't have a proper browser.
```
# -k equals --insecure, -o equals --output
curl -k -o "filename-you-want-to-save" "url you want to download"
# for example
curl -ko "stackoverflow.html" "https://stackoverflow.com/questions/75612763/downloading-files-with-curl"
```
curl -L -o /usr/bin/jq.exe https://github.com/stedolan/jq/releases/latest/download/jq-win64.exe
可以解决 windows 下的 gitbash 没有 jq 可用的问题。