Standalone binary documentation.

This commit is contained in:
Batuhan Taskaya 2022-05-09 09:01:59 +03:00
parent dc5274e491
commit f09e7564e7
2 changed files with 28 additions and 0 deletions

View File

@ -215,6 +215,21 @@ $ pacman -Syu httpie
$ pacman -Syu $ 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 ### FreeBSD
#### FreshPorts #### FreshPorts

View File

@ -23,6 +23,7 @@ docs-structure:
- dnf - dnf
- yum - yum
- pacman - pacman
- single-binary
FreeBSD: FreeBSD:
- pkg - pkg
@ -181,3 +182,15 @@ tools:
- yum install httpie - yum install httpie
upgrade: upgrade:
- yum upgrade httpie - 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