2016-08-06 00:12:27 +08:00
|
|
|
package lsd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/cmd"
|
2018-01-07 01:00:20 +08:00
|
|
|
"github.com/ncw/rclone/cmd/ls/lshelp"
|
2016-08-06 00:12:27 +08:00
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-10-22 19:05:45 +08:00
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
2016-08-06 00:12:27 +08:00
|
|
|
}
|
|
|
|
|
2016-10-22 19:05:45 +08:00
|
|
|
var commandDefintion = &cobra.Command{
|
2016-08-06 00:12:27 +08:00
|
|
|
Use: "lsd remote:path",
|
2017-01-01 01:20:31 +08:00
|
|
|
Short: `List all directories/containers/buckets in the path.`,
|
2018-01-07 01:00:20 +08:00
|
|
|
Long: `
|
|
|
|
Lists the directories in the source path to standard output. Recurses
|
|
|
|
by default.
|
|
|
|
` + lshelp.Help,
|
2016-08-06 00:12:27 +08:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
2016-12-05 00:52:24 +08:00
|
|
|
cmd.Run(false, false, command, func() error {
|
2016-08-06 00:12:27 +08:00
|
|
|
return fs.ListDir(fsrc, os.Stdout)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|