2016-08-05 18:12:27 +02:00
|
|
|
package lsl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/cmd"
|
2018-01-06 18:00:20 +01:00
|
|
|
"github.com/ncw/rclone/cmd/ls/lshelp"
|
2018-01-12 17:30:54 +01:00
|
|
|
"github.com/ncw/rclone/fs/operations"
|
2016-08-05 18:12:27 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-10-22 13:05:45 +02:00
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
2016-08-05 18:12:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-22 13:05:45 +02:00
|
|
|
var commandDefintion = &cobra.Command{
|
2016-08-05 18:12:27 +02:00
|
|
|
Use: "lsl remote:path",
|
2018-01-06 18:00:20 +01:00
|
|
|
Short: `List the objects in path with modification time, size and path.`,
|
|
|
|
Long: `
|
|
|
|
Lists the objects in the source path to standard output in a human
|
|
|
|
readable format with modification time, size and path. Recurses by default.
|
|
|
|
` + lshelp.Help,
|
2016-08-05 18:12:27 +02:00
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
2016-12-04 17:52:24 +01:00
|
|
|
cmd.Run(false, false, command, func() error {
|
2018-01-12 17:30:54 +01:00
|
|
|
return operations.ListLong(fsrc, os.Stdout)
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|