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

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