How to Copy and Paste Text, Files and Folders in Linux Terminal

Linux Terminal Copy Paste Featured

Copying and pasting is one of the most used actions on a computer. While it is easy to do so with the Ctrl + C and Ctrl + V keyboard shortcuts, on the Linux terminal it is not so straightforward. You have several options to get the job done. Here is how you can copy and paste text, files and directories in Linux terminal.

Also read: How to Delete a Directory in Linux

Copy and Paste Text

If you just want to copy a piece of text in the terminal, all you need to do is highlight it with your mouse, then press Ctrl + Shift + C to copy.

To paste it where the cursor is, use the keyboard shortcut Ctrl + Shift + V.

The Paste shortcut also applies when you copy a section of text from a Word document (or any other application) and want to paste it in the terminal. For example, you can copy a command from a web page in your browser and use the Ctrl + Shift + V shortcut to paste it in the terminal.

If for some reason these keyboard shortcuts don’t work, the terminal might not be properly configured for it. Look for options that allow you to customize keyboard shortcuts. These are instructions for the most popular terminals:

  • Gnome Terminal – Click the hamburger menu and click “Preferences.” Navigate to “Shortcuts” and scroll to “Edit.” The options for “Copy” and “Paste” will appear there ready to be configured.
  • Konsole – Go to “Settings” and then click on “Configure Keyboard Shortcuts.” Search for “Copy,” configure it to use the key combos mentioned previously, then do the same for “Paste.”

Most other terminals will lock you into the default universal combination for copying/pasting in the console without the ability to configure them.

Also read: How to Use cURL for Command Line Data Transfer and More

Copy and Paste a Single File

Any time you want to copy a file or folder in the Linux command line, the above keyboard shortcut won’t work. You have to use the cp command. cp is shorthand for copy. The syntax is simple, too. Use cp followed by the file you want to copy and the destination where you want it moved.

cp your-file.txt ~/Documents/
Linux Cli Copy Document

That, of course, assumes that your file is in the same directory you’re working out of. You can specify both.

cp ~/Downloads/your-file.txt ~/Documents/

You also have the option of renaming your file while copying it. Specify the new name in the destination.

cp ~/Downloads/your-file.txt ~/Documents/new-name.txt

Also read: How to Use the dd Command in Linux

Copy and Paste a Folder and Its Contents

In order to copy a folder and its contents, you’re going to need to tell the cp command to copy recursively. That’s simple enough with the -r flag.

cp -r ~/Downloads/pictures-directory ~/Pictures/family-vacation-pics
Linux Cli Copy Folder

All the rest of your syntax is exactly the same. The -r flag serves to tell cp that it’s working with a directory and should copy its contents.

If you want the paste action to overwrite existing files, you can add the -f flag:

cp -rf ~/Downloads/pictures-directory ~/Pictures/family-vacation-pics

Also read: How to Use Rm Command in Linux

Copy and Paste Multiple Files

You can also copy multiple files. The Linux command line lets you target multiple items at once with brackets {}. You can use them to list the names of each file to be copied separated by commas.

cp ~/Downloads/{file1.txt,file2.jpg,file3.odt} ~/Documents/
Linux Cli Copy Multiple

All three files of differing file types will be copied to the Documents directory.

Copy and Paste All Files of the Same Type

If you have a ton of files of the same type to copy, you can use the wildcard character *. The asterisk/wildcard tells the Linux command line to accept absolutely anything in that place. So, if you tell Linux to copy *.jpg, it’ll copy all JPG files, regardless of the name or whatever comes before the .jpg part.

cp ~/Downloads/*.jpg ~/Pictures/
Linux Cli Copy All File Type

If you want to use multiple file types, say JPG and PNG, you can use the brackets from before.

cp ~/Downloads/*.{jpg,png} ~/Pictures/

Also read: How to Copy and Paste on Sites that Won’t Let You

Make Copying More Interactive

As you may have noticed while following this guide, using cp does not give you any sort of confirmation or prompt after finishing what it’s doing unless it encounters an error. This may cause a bit of discomfort especially when you’re doing very large file copy operations on slower hardware that could take a long time to complete.

By attaching the -v flag to your command, you tell cp to give you its most detailed output on what it does. The -i flag provides confirmation prompts so that you have a chance to cancel certain operations like overwriting certain files.

cp -rvi ~/Downloads/*.jpg ~/Pictures/

Generally the -v and -i flags are available in a large range of commands that are common to Linux.

Rsync vs CP

If you need to do several copy operations that overwrite files (such as creating a backup that you will update once in awhile) for some reason, rsync might just put a smile on your face.

rsync is a little more advanced in that it goes into the minutiae of each file, does a full comparison of the data in both, and within the file itself, only overwrites the data that has changed. This is especially useful if the destination folder is in an SSD, as it saves write cycles and doesn’t needlessly degrade the drive’s health by overwriting entire files.

Learn how to make use of rsync to copy files in Linux.

Also read: How to Save the Terminal Output to a File in Linux

Move a File or Folder

If you came here looking to move a file from one place to another without making a duplicate, you can do that easily too, but moving a file requires the mv command. The syntax is very similar to cp.

mv ~/Downloads/your-file.txt ~/Documents/

Similarly, you can also rename the file.

mv ~/Downloads/your-file.txt ~/Documents/renamed.txt

There is one major difference, though. You don’t need the -r flag to move a whole folder.

mv ~/Downloads/downloaded-folder ~/Pictures/vacation-pics

Frequently Asked Questions

Is rsync better than cp?

Neither is better than the other generally. rsync will make full comparisons of files in both the source and destination folders, taking up some computing resources to save on bandwidth or write cycles. It’s great if you’re constantly updating a backup of a particular folder, but less than ideal if you’re just doing a single copy operation.

cp functions more as a Swiss Army knife that just wants to get the job done. If you have to overwrite something, cp does it for you. Because of its capability for interactivity, it’s also more beginner-friendly and gives you a bit more control over the copying process.

Why can't I just use Ctrl+C to copy items from my terminal?

In Linux terminal applications, pressing Ctrl + C on your keyboard sends a SIGINT (interrupt) signal to the kernel. It’s a simple way of telling Linux to stop whatever is running on that particular terminal.

If you configure the “Copy” function in your terminal to respond to that key combination, you will encounter problems when copying a line of text from an executing command while it’s still in the process of doing something.

Image credit: Neron Photos on Pexels

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Miguel Leiva-Gomez
Miguel Leiva-Gomez - Staff Writer

Miguel has been a business growth and technology expert for more than a decade and has written software for even longer. From his little castle in Romania, he presents cold and analytical perspectives to things that affect the tech world.