-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from richardschneider/138-csipfs
csipfs tool
- Loading branch information
Showing
8 changed files
with
102 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# IPFS CLI | ||
|
||
## Install | ||
|
||
The `csipfs` tool is available on [Nuget](https://www.nuget.org/packages/csipfs/) and | ||
is installed with dotnet. | ||
|
||
> dotnet tool install --global csipfs | ||
|
||
## Usage | ||
|
||
`csipfs` is a tool to control your IPFS node. | ||
|
||
``` | ||
> csipfs --help | ||
Usage: csipfs [options] [command] | ||
Options: | ||
--version Show version information | ||
--help Show help information | ||
--api <url> Use a specific API instance | ||
-L|--local Run the command locally, instead of using the daemon | ||
--enc The output type (json, xml, or text) | ||
--debug Show debugging info | ||
--trace Show tracing info | ||
--time Show how long the command took | ||
Commands: | ||
add Add a file to IPFS | ||
bitswap Manage swapped blocks | ||
block Manage raw blocks | ||
bootstrap Manage bootstrap peers | ||
cat Show IPFS file data | ||
config Manage the configuration | ||
daemon Start a long running IPFS deamon | ||
dht Query the DHT for values or peers | ||
dns Resolve DNS link | ||
files Manage the mfs (Mutable File System) [WIP] | ||
get Download IPFS data | ||
id Show info on an IPFS peer | ||
init Initialize ipfs local configuration [WIP] | ||
key Manage private keys | ||
ls List links | ||
name Manage IPNS names | ||
object Manage IPFS objects | ||
pin Manage data in local storage [WIP] | ||
pubsub Publish/subscribe to messages on a given topic | ||
refs List hashes of links [WIP] | ||
repo Manage the IPFS repository | ||
resolve Resolve any type of name | ||
shutdown Stop the IPFS deamon | ||
stats Query IPFS statistics | ||
swarm Manage connections to the p2p network | ||
update Download the latest version [WIP] | ||
version Show version information | ||
Run 'csipfs [command] --help' for more information about a command. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters