From c049a605b59503c65b3f1f37e7e774c03d53f928 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 28 Oct 2018 15:29:03 +0530 Subject: [PATCH] cp: fix typo in target folder path (#2492) --- pages/common/cp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/cp.md b/pages/common/cp.md index 402650959..049555736 100644 --- a/pages/common/cp.md +++ b/pages/common/cp.md @@ -8,7 +8,7 @@ - Copy a file into another folder, keeping the filename: -`cp {{path/to/file.ext}} {{path/to/target/parent/folder}}` +`cp {{path/to/file.ext}} {{path/to/target_parent_folder}}` - Copy a folder recursively to another location: @@ -20,8 +20,8 @@ - Copy the contents of a folder into another folder: -`cp -r {{path/to/source/folder/*}} {{path/to/target/folder}}` +`cp -r {{path/to/source_folder/*}} {{path/to/target_folder}}` - Copy text files to another location, in interactive mode (prompts user before overwriting): -`cp -i {{*.txt}} {{path/to/source/}}` +`cp -i {{*.txt}} {{path/to/target_folder}}`