From bf431d457c2353f23a358217153b25ff95e34531 Mon Sep 17 00:00:00 2001 From: Naoki Oketani Date: Sat, 6 Jul 2019 00:11:56 +0900 Subject: [PATCH] correct kubectl cp argument order --- .../book/pages/container_debugging/copying_container_files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/kubectl/docs/book/pages/container_debugging/copying_container_files.md b/staging/src/k8s.io/kubectl/docs/book/pages/container_debugging/copying_container_files.md index edfb20cf36be1..5f71f9efd0ac8 100644 --- a/staging/src/k8s.io/kubectl/docs/book/pages/container_debugging/copying_container_files.md +++ b/staging/src/k8s.io/kubectl/docs/book/pages/container_debugging/copying_container_files.md @@ -44,7 +44,7 @@ Copy a remote file from a Pod to a local file. {% sample lang="yaml" %} ```bash -kubectl cp /tmp/foo :/tmp/bar +kubectl cp :/tmp/foo /tmp/bar ``` {% endmethod %}