mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 17:44:57 +01:00
26 lines
529 B
Go
26 lines
529 B
Go
package lsl
|
|
|
|
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: "lsl remote:path",
|
|
Short: `List all the objects path with modification time, size and 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.ListLong(fsrc, os.Stdout)
|
|
})
|
|
},
|
|
}
|