curl -s https://api.example.com | python3 -m json.tool
jq . file.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set number relativenumber | |
| set expandtab shiftwidth=2 tabstop=2 | |
| syntax on | |
| set ignorecase smartcase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| git branch --merged main | grep -vE '^\*|main|master' | xargs -r git branch -d |