https://github.com/alexandrehtrb/Pororoca
- An API testing tool with support for HTTP/2 and HTTP/3. Alternative to Postman.
- https://pororoca.io
https://github.com/alexandrehtrb/Pororoca
| #!/bin/bash | |
| # Author: Blake <github.com/blakenorthone> | |
| # Description: Transforms JSON input of AWS SSM parameters into dotenv (.env) file format. | |
| # | |
| # Usage: | |
| # - Displaying and saving output using tee: | |
| # aws ssm get-parameters-by-path --path /Dev/App --output json --region us-east-1 | ./json_to_dotenv.sh | tee .env | |
| # - Redirecting output to a file (silent mode): | |
| # aws ssm get-parameters-by-path --path /Dev/App --output json | ./json_to_dotenv.sh > .env |
| #!/bin/bash | |
| # | |
| # be sure to chmod a+x jamf-removal (macOS can double-click no-extension files with #!/bin/bash) | |
| # | |
| # source: https://community.jamf.com/t5/jamf-pro/manual-remove-jamf-components-and-configs/m-p/184370/highlight/true#M173193 | |
| # Remove all system profiles | |
| for identifier in $(/usr/bin/profiles -L | awk "/attribute/" | awk '{print $4}'); do | |
| /usr/bin/profiles -R -p "$identifier" >/dev/null 2>&1 | |
| done |