Global :
Pictures :
Icons :
#!/usr/bin/env bash | |
# | |
# This script downloads an asset from latest or specific Github release of a | |
# private repo. | |
# | |
# PREREQUISITES | |
# | |
# curl, wget, jq | |
# | |
# USAGE |
#!/bin/bash | |
# USAGE: curltime DOMAIN_NAME | |
curl -w @- -o /dev/null -s "$@" <<'EOF' | |
time_namelookup: %{time_namelookup}\n | |
time_connect: %{time_connect}\n | |
time_appconnect: %{time_appconnect}\n | |
time_pretransfer: %{time_pretransfer}\n | |
time_redirect: %{time_redirect}\n | |
time_starttransfer: %{time_starttransfer}\n |
#!/usr/bin/env bash | |
# | |
# This script downloads an asset from latest or specific Github release of a | |
# private repo. | |
# | |
# PREREQUISITES | |
# | |
# curl, wget, jq | |
# | |
# USAGE |