mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 02:09:55 +08:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
32 lines
713 B
Go
32 lines
713 B
Go
package copyurl
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/rclone/rclone/cmd"
|
|
"github.com/rclone/rclone/fs/operations"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
}
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
Use: "copyurl https://example.com dest:path",
|
|
Short: `Copy url content to dest.`,
|
|
Long: `
|
|
Download urls content and copy it to destination
|
|
without saving it in tmp storage.
|
|
`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(2, 2, command, args)
|
|
fsdst, dstFileName := cmd.NewFsDstFile(args[1:])
|
|
|
|
cmd.Run(true, true, command, func() error {
|
|
_, err := operations.CopyURL(context.Background(), fsdst, dstFileName, args[0])
|
|
return err
|
|
})
|
|
},
|
|
}
|