mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:29:04 -08:00
regenerate readme
This commit is contained in:
parent
9167121425
commit
e66820c81a
1 changed files with 23 additions and 2 deletions
25
README.md
25
README.md
|
@ -2,15 +2,36 @@
|
||||||
|
|
||||||
_(plus some little shell scripts)_
|
_(plus some little shell scripts)_
|
||||||
|
|
||||||
quick install for random boxes:
|
### quick install
|
||||||
|
|
||||||
```
|
this archive is always up-to-date with git.
|
||||||
|
|
||||||
|
```sh
|
||||||
# with curl:
|
# with curl:
|
||||||
cd && curl -L https://github.com/notwa/rc/archive/master.tar.gz | tar zx && mv rc-master rc && rc/install
|
cd && curl -L https://github.com/notwa/rc/archive/master.tar.gz | tar zx && mv rc-master rc && rc/install
|
||||||
# with wget:
|
# with wget:
|
||||||
cd && wget -O - https://github.com/notwa/rc/archive/master.tar.gz | tar zx && mv rc-master rc && rc/install
|
cd && wget -O - https://github.com/notwa/rc/archive/master.tar.gz | tar zx && mv rc-master rc && rc/install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### experimental install
|
||||||
|
|
||||||
|
this archive is only updated once a day.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# one time:
|
||||||
|
gpg --locate-key rc@glorp.wang
|
||||||
|
# many times:
|
||||||
|
cd && curl rc.glorp.wang | gpg --yes -o rc.tar -d - && tar xf rc.tar && rc/install
|
||||||
|
```
|
||||||
|
|
||||||
|
`curl` can be replaced by `wget -O-` or [`http`][httpie] or even [`burl`](#burl).
|
||||||
|
note that you can't pipe gpg directly into tar, because
|
||||||
|
because doing so would skip the signature being checked.
|
||||||
|
|
||||||
|
[httpie]: https://httpie.io/docs/cli
|
||||||
|
|
||||||
|
### compatibility
|
||||||
|
|
||||||
the following shells are taken into consideration, ordered from most to least compatible:
|
the following shells are taken into consideration, ordered from most to least compatible:
|
||||||
|
|
||||||
* zsh
|
* zsh
|
||||||
|
|
Loading…
Reference in a new issue