unixfs.go 658 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
objects (e.g. fanout and chunking).
Richard Littauer's avatar
Richard Littauer committed
12
`,
Jakub Sztandera's avatar
Jakub Sztandera committed
13
		LongDescription: `
Richard Littauer's avatar
Richard Littauer committed
14 15 16
'ipfs file' provides a familiar interface to file systems represented
by IPFS objects, which hides IPFS implementation details like layout
objects (e.g. fanout and chunking).
17 18 19 20 21 22 23
`,
	},

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