From 3f9f2582030d4ce51b6e990a325d620f8fc85855 Mon Sep 17 00:00:00 2001 From: Dmitri Sim Date: Tue, 16 Oct 2018 06:34:44 +0300 Subject: [PATCH] Added 'cp' command description (#19145) --- .../pages/guide/english/linux/basic-linux-commands/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/pages/guide/english/linux/basic-linux-commands/index.md b/client/src/pages/guide/english/linux/basic-linux-commands/index.md index d7a5add5fd..c67b2151d9 100644 --- a/client/src/pages/guide/english/linux/basic-linux-commands/index.md +++ b/client/src/pages/guide/english/linux/basic-linux-commands/index.md @@ -42,3 +42,6 @@ When starting out with linux, there are some basic commands everyone should know 12. **clear** - clear terminal - Use `clear` to simply clear all output from your terminal. + +13. **cp** - copy files and directories +- Use 'cp' to copy a file or a direcotry with files inside it to another location using command 'cp CURRENT_FILE-LOCATION DESTINATION_FOLDER'. Add '-r' flag to copy a directory that is not empty.