unixfs.go 536 Bytes
Newer Older
1 2 3 4 5 6 7 8
package unixfs

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

var UnixFSCmd = &cmds.Command{
	Helptext: cmds.HelpText{
		Tagline: "Interact with ipfs objects representing Unix filesystems",
		ShortDescription: `
9
'ipfs file' provides a familar interface to filesystems represtented
10 11 12 13
by IPFS objects that hides IPFS-implementation details like layout
objects (e.g. fanout and chunking).
`,
		Synopsis: `
14
ipfs file ls <path>...  - List directory contents for <path>...
15 16 17 18 19 20 21
`,
	},

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