2023-06-20 16:46:25 +02:00

39 lines
1.3 KiB
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/rsteube/carapace-bin/pkg/actions/tools/docker"
"github.com/rsteube/carapace/pkg/util"
"github.com/spf13/cobra"
)
var container_cpCmd = &cobra.Command{
Use: "cp [OPTIONS] CONTAINER:SRC_PATH DEST_PATH|-",
Short: "Copy files/folders between a container and the local filesystem",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(container_cpCmd).Standalone()
container_cpCmd.Flags().BoolP("archive", "a", false, "Archive mode (copy all uid/gid information)")
container_cpCmd.Flags().BoolP("follow-link", "L", false, "Always follow symbol link in SRC_PATH")
container_cpCmd.Flags().BoolP("quiet", "q", false, "Suppress progress output during copy. Progress output is automatically suppressed if no terminal is attached")
containerCmd.AddCommand(container_cpCmd)
carapace.Gen(container_cpCmd).PositionalCompletion(
carapace.ActionCallback(func(c carapace.Context) carapace.Action {
if util.HasPathPrefix(c.Value) {
return carapace.ActionFiles()
}
return docker.ActionContainerPath()
}),
carapace.ActionCallback(func(c carapace.Context) carapace.Action {
if util.HasPathPrefix(c.Args[0]) {
return docker.ActionContainerPath()
}
return carapace.ActionFiles()
}),
)
}