unixfs.go 459 Bytes
Newer Older
1 2 3 4 5 6
package unixfs

import cmds "github.com/ipfs/go-ipfs/commands"

var UnixFSCmd = &cmds.Command{
	Helptext: cmds.HelpText{
rht's avatar
rht committed
7
		Tagline: "Interact with ipfs objects representing Unix filesystems.",
8
		ShortDescription: `
9 10
'ipfs file' provides a familiar interface to file systems represented
by IPFS objects, which hides IPFS implementation details like layout
11 12 13 14 15 16 17 18
objects (e.g. fanout and chunking).
`,
	},

	Subcommands: map[string]*cmds.Command{
		"ls": LsCmd,
	},
}