Shell script for downloading the dotfiles repo, to be invoked with curl
or wget
.
$ curl get.darryl.cx | sh
$ wget -qO- get.darryl.cx | sh
The script will download the dotfiles repository and place it in ~/dotfiles
. From there, the user is instructed to navigate to the ~/dotfiles
directory to manually invoke the Makefile.
Latest checksums can be found in the tag notes
While curl | sh
is considered an "unsafe" practice by many, we can mitigate risk by validating checksums of the scripts before piping them directly to sh
. To check the SHA-256 checksum of the dotfiles installer:
$ curl get.darryl.cx | shasum -a 256