Skip to content

Install gimme

gimme has two types of release channels: Stable and Latest:

Stable - from the latest release

Copy and paste the command into your terminal.

curl -Lo gimme  https://github.com/mszostok/gimme/releases/latest/download/gimme_darwin_x86_64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
curl -Lo gimme  https://github.com/mszostok/gimme/releases/latest/download/gimme_linux_x86_64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
Invoke-WebRequest -OutFile 'C:\Program Files\gimme.exe' https://github.com/mszostok/gimme/releases/latest/download/gimme_windows_x86_64.exe

curl -Lo gimme  https://github.com/mszostok/gimme/releases/latest/download/gimme_linux_arm64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
curl -Lo gimme  https://github.com/mszostok/gimme/releases/latest/download/gimme_darwin_arm64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help

Invoke-WebRequest -OutFile 'C:\Program Files\gimme.exe' https://github.com/mszostok/gimme/releases/latest/download/gimme_windows_i386.exe
curl -Lo gimme  https://github.com/mszostok/gimme/releases/latest/download/gimme_linux_i386 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help

Latest - from the latest main commit

Copy and paste the command into your terminal.

curl -Lo gimme  https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_darwin_x86_64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
curl -Lo gimme  https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_linux_x86_64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
Invoke-WebRequest -OutFile 'C:\Program Files\gimme.exe' https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_windows_x86_64.exe

curl -Lo gimme  https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_linux_arm64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
curl -Lo gimme  https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_darwin_arm64 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help

Invoke-WebRequest -OutFile 'C:\Program Files\gimme.exe' https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_windows_i386.exe
curl -Lo gimme  https://github.com/mszostok/gimme/releases/download/v1-latest/gimme_linux_i386 \
&& chmod +x gimme && mv gimme /usr/local/bin/gimme && gimme --help
Back to top