Download
Download dotfiles-cli
executable.
Package Managers
Pull in dotfiles-cli
’s executable using popular package managers.
Homebrew
The fastest way (for macOS
and Linux
) to install dotfiles-cli
is using Homebrew:
brew install ZachiNachshon/tap/dotfiles-cli
Alternatively, tap into the formula to have brew search capabilities on that tap formulas:
-
Tap into
ZachiNachshon
formulabrew tap ZachiNachshon/tap
-
Install the latest
dotfiles-cli
binarybrew install dotfiles-cli
Released Version
Download and install dotfiles-cli
executable (copy & paste into a terminal):
curl -sfLS https://raw.githubusercontent.com/ZachiNachshon/dotfiles-cli/master/install.sh | bash -
Available installation flags:
Flag | Description |
---|---|
VERSION |
Specify the released version to install |
DRY_RUN |
Run all commands in dry-run mode without file system changes |
Example:
curl -sfLS \
https://raw.githubusercontent.com/ZachiNachshon/dotfiles-cli/master/install.sh | \
DRY_RUN=True \
VERSION=0.6.0 \
bash -
Alternatively, you can download a release directy from GitHub
PATH
awareness
Make sure ${HOME}/.local/bin
exists on the PATH
or sourced on every new shell session.
Pre-Built Release
Clone dotfiles-cli
repository into a directory of your choice and install:
git clone https://github.com/ZachiNachshon/dotfiles-cli.git; cd dotfiles-cli; make install_from_respository
Uninstall
Instruction to uninstall dotfiles-cli
based on installation method.
Homebrew
brew remove dotfiles-cli
Released Version
curl -sfLS https://raw.githubusercontent.com/ZachiNachshon/dotfiles-cli/master/uninstall.sh | bash -
Available flags:
Flag | Description |
---|---|
DRY_RUN |
Run all commands in dry-run mode without file system changes |
Example:
curl -sfLS \
https://raw.githubusercontent.com/ZachiNachshon/dotfiles-cli/master/uninstall.sh | \
DRY_RUN=True \
bash -