github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/core/commands/unixfs/unixfs.go (about)

     1  package unixfs
     2  
     3  import cmds "github.com/ipfs/go-ipfs/commands"
     4  
     5  var UnixFSCmd = &cmds.Command{
     6  	Helptext: cmds.HelpText{
     7  		Tagline: "Interact with ipfs objects representing Unix filesystems",
     8  		ShortDescription: `
     9  'ipfs file' provides a familar interface to filesystems represtented
    10  by IPFS objects that hides IPFS-implementation details like layout
    11  objects (e.g. fanout and chunking).
    12  `,
    13  		Synopsis: `
    14  ipfs file ls <path>...  - List directory contents for <path>...
    15  `,
    16  	},
    17  
    18  	Subcommands: map[string]*cmds.Command{
    19  		"ls": LsCmd,
    20  	},
    21  }