aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-27 19:12:38 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-27 19:12:38 +0800
commit86c43d97bc34f0cb605c6e3a1911612621ebce1f (patch)
tree828fb87d9b2f9581bc23fe38fdc5333091428096
parent0b4b2b81f93d1b7762a9fda6a464bdee67d286de (diff)
parent5838847a9a47b58c6462a66bbce73266d72abde2 (diff)
downloaddexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar.gz
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar.bz2
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar.lz
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar.xz
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.tar.zst
dexon-86c43d97bc34f0cb605c6e3a1911612621ebce1f.zip
Merge pull request #581 from aperseghin/patch-1
Update README.md
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 0200a57d5..22b331cbd 100644
--- a/README.md
+++ b/README.md
@@ -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)