unixfs.go 780 Bytes
Newer Older
1 2
package unixfs

Jan Winkelmann's avatar
Jan Winkelmann committed
3
import (
Steven Allen's avatar
Steven Allen committed
4
	cmds "gx/ipfs/QmQkW9fnCsg9SLHdViiAh6qfBppodsPZVpU92dZLqYtEfs/go-ipfs-cmds"
Overbool's avatar
Overbool committed
5
	cmdkit "gx/ipfs/Qmde5VP1qUkyQXKCfmEUA7bP64V2HAptbJ7phuPp7jXWwg/go-ipfs-cmdkit"
Jan Winkelmann's avatar
Jan Winkelmann committed
6
)
7 8

var UnixFSCmd = &cmds.Command{
Jan Winkelmann's avatar
Jan Winkelmann committed
9
	Helptext: cmdkit.HelpText{
10
		Tagline: "Interact with IPFS objects representing Unix filesystems.",
11
		ShortDescription: `
12
'ipfs file' provides a familiar interface to file systems represented
13
by IPFS objects, which hides ipfs implementation details like layout
14
objects (e.g. fanout and chunking).
Richard Littauer's avatar
Richard Littauer committed
15
`,
Jakub Sztandera's avatar
Jakub Sztandera committed
16
		LongDescription: `
Richard Littauer's avatar
Richard Littauer committed
17
'ipfs file' provides a familiar interface to file systems represented
18
by IPFS objects, which hides ipfs implementation details like layout
Richard Littauer's avatar
Richard Littauer committed
19
objects (e.g. fanout and chunking).
20 21 22 23 24 25 26
`,
	},

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