diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-27 23:03:49 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-27 23:03:49 +0800 |
commit | 0ac346f7078dba597d60f991c32ddbfd7be167ba (patch) | |
tree | 33a690fa6ef7cbc8584ff2a1f40f85b28b42ac7f /README.md | |
parent | 9f84c78eb5cceb5f413fbdeafe63786f1b958e83 (diff) | |
parent | eb102bf4bb0bff773824ff467fbb2e49c1f6939b (diff) | |
download | dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar.gz dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar.bz2 dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar.lz dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar.xz dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.tar.zst dexon-0ac346f7078dba597d60f991c32ddbfd7be167ba.zip |
Merge branch 'develop' into rpcargs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -20,7 +20,7 @@ Mist (GUI): `go get github.com/ethereum/go-ethereum/cmd/mist` -Ethereum (CLI): +Geth (CLI): `go get github.com/ethereum/go-ethereum/cmd/ethereum` @@ -32,10 +32,10 @@ Mist (GUI): godep go build -v ./cmd/mist ``` -Ethereum (CLI): +Geth (CLI): ``` -godep go build -v ./cmd/ethereum +godep go build -v ./cmd/geth ``` Instead of `build`, you can use `install` which will also install the resulting binary. @@ -61,7 +61,7 @@ Go Ethereum comes with several wrappers/executables found in [the `cmd` directory](https://github.com/ethereum/go-ethereum/tree/develop/cmd): * `mist` Official Ethereum Browser (ethereum GUI client) -* `ethereum` Ethereum CLI (ethereum command line interface client) +* `geth` Ethereum CLI (ethereum command line interface client) * `bootnode` runs a bootstrap node for the Discovery Protocol * `ethtest` test tool which runs with the [tests](https://github.com/ethereum/testes) suite: `cat file | ethtest`. @@ -73,12 +73,12 @@ Go Ethereum comes with several wrappers/executables found in Command line options ============================ -Both `mist` and `ethereum` can be configured via command line options, environment variables and config files. +Both `mist` and `geth` can be configured via command line options, environment variables and config files. To get the options available: ``` -ethereum -help +geth -help ``` For further details on options, see the [wiki](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options) |