@@ -9,6 +9,7 @@ A CLI for the hyper:// space network ([Hypercore Protocol](https://hypercore-pro
9
9
- [ Sharing a folder] ( ./docs/guides/sharing-a-folder.md )
10
10
- [ Downloading a folder] ( ./docs/guides/downloading-a-folder.md )
11
11
- [ Keeping hypers online (seeding)] ( ./docs/guides/seeding.md )
12
+ - [ List your current seeds] ( ./docs/guide/list-seeds.md )
12
13
- [ Creating a hyperdrive] ( ./docs/guides/creating-a-hyperdrive.md )
13
14
- [ Reading a file from a hyperdrive] ( ./docs/guides/reading-a-file.md )
14
15
- [ Writing a file to a hyperdrive] ( ./docs/guides/writing-a-file.md )
@@ -30,8 +31,9 @@ Usage: hyp <command> [opts...]
30
31
31
32
General Commands:
32
33
33
- hyp info {urls...} - Show information about one (or more) hypers.
34
- hyp host {urls...} - Sync and host hyper data.
34
+ hyp info [urls...] - Show information about one (or more) hypers.
35
+ hyp seed {urls...} - Download and make hyper data available to the network.
36
+ hyp unseed {urls...} - Stop making hyper data available to the network.
35
37
hyp create {drive| bee} - Create a new hyperdrive or hyperbee.
36
38
37
39
Hyperdrive Commands:
@@ -59,7 +61,7 @@ Hyperbee Commands:
59
61
Daemon Commands:
60
62
61
63
hyp daemon status - Check the status of the hyperspace daemon.
62
- hyp daemon stop - Stop the hyperspace daemon if active.
64
+ hyp daemon stop - Stop the hyperspace and mirroring daemons if active.
63
65
64
66
Aliases:
65
67
@@ -99,17 +101,24 @@ You can create a new hyperdrive or hyperbee using the `create` commands:
99
101
hyp create drive
100
102
` ` `
101
103
102
- You can then host the hyper (or host a hyper created by somebody else) using the ` host ` command:
104
+ You can then seed the hyper (or seed a hyper created by somebody else) using the ` seed ` command:
103
105
104
106
` ` `
105
- hyp host hyper://515bbbc1db2139ef27b6c45dfa418c8be6a1dec16823ea7cb9e61af8d060049e/
107
+ hyp seed hyper://515bbbc1db2139ef27b6c45dfa418c8be6a1dec16823ea7cb9e61af8d060049e/
108
+ ` ` `
109
+
110
+ To see what hypers you are currently seeding, run ` info` :
111
+
112
+ ` ` `
113
+ hyp info
106
114
` ` `
107
115
108
116
Further guides:
109
117
110
118
- [Sharing a folder](./docs/guides/sharing-a-folder.md)
111
119
- [Downloading a folder](./docs/guides/downloading-a-folder.md)
112
120
- [Keeping hypers online (seeding)](./docs/guides/seeding.md)
121
+ - [List your current seeds](./docs/guide/list-seeds.md)
113
122
- [Reading a file from a hyperdrive](./docs/guides/reading-a-file.md)
114
123
- [Writing a file to a hyperdrive](./docs/guides/writing-a-file.md)
115
124
- [Diffing hyperdrives and local folders](./docs/guides/diffing-a-hyperdrive.md)
0 commit comments