mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
26 lines
516 B
Go
26 lines
516 B
Go
package lsd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ncw/rclone/cmd"
|
|
"github.com/ncw/rclone/fs"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
}
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
Use: "lsd remote:path",
|
|
Short: `List all directories/containers/buckets in the path.`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
fsrc := cmd.NewFsSrc(args)
|
|
cmd.Run(false, false, command, func() error {
|
|
return fs.ListDir(fsrc, os.Stdout)
|
|
})
|
|
},
|
|
}
|