Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 476 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 476 Bytes

static-binaries

This repo contains a bunch of statically-linked binaries of various tools, along with the Dockerfiles / other build scripts that can be used to build them.

This repo is compatible with import, so that you can easily load static binaries that your script depends on.

Example

#!/usr/bin/env import
import "static-binaries"
static_binaries "jq"

echo "\`jq\` is located at: $(command -v jq)"
echo "\`jq -V\`: $(jq -V)"