unixfs.go 663 Bytes
Newer Older
1 2
package unixfs

Jan Winkelmann's avatar
Jan Winkelmann committed
3
import (
tavit ohanian's avatar
tavit ohanian committed
4
	cmds "gitlab.dms3.io/dms3/go-dms3-cmds"
Jan Winkelmann's avatar
Jan Winkelmann committed
5
)
6 7

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

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