diff --git a/docs/README.md b/docs/README.md index 364e0a85..c06d987c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -215,6 +215,21 @@ $ pacman -Syu httpie $ pacman -Syu ``` +#### Single Binary Executables + +Have a standalone HTTPie executable, when you don't want to go through the full installatin process. + +```bash +# Install httpie +$ https --download packages.httpie.io/binaries/linux/http-latest -o http +$ chmod +X ./http +``` + +```bash +# Upgrade httpie +$ https --download packages.httpie.io/binaries/linux/http-latest -o http +``` + ### FreeBSD #### FreshPorts diff --git a/docs/installation/methods.yml b/docs/installation/methods.yml index 79c78e3a..990af16a 100644 --- a/docs/installation/methods.yml +++ b/docs/installation/methods.yml @@ -23,6 +23,7 @@ docs-structure: - dnf - yum - pacman + - single-binary FreeBSD: - pkg @@ -181,3 +182,15 @@ tools: - yum install httpie upgrade: - yum upgrade httpie + + single-binary: + title: Single Binary Executables + name: Single Binary Executables + note: Have a standalone HTTPie executable, when you don't want to go through the full installatin process. + links: + commands: + install: + - https --download packages.httpie.io/binaries/linux/http-latest -o http + - chmod +X ./http + upgrade: + - https --download packages.httpie.io/binaries/linux/http-latest -o http