Home Linux Commands How to Copy Large Number of Files in Linux

How to Copy Large Number of Files in Linux

We use the cp command in Linux to copy files and directories from one directory to another. It can be simply used to copy a few files or directories, or it can be used with the '-r' argument (which stands for ‘recursive‘) to copy a directory and the whole directory tree structure underneath it.

The syntax to use to cp command is:

$ cp <file1> <file2> ... <fileN> <target_directory>
$ cp -r <directory1> <directory2> ... <directoryN> <target_directory>
$ cp file1 file2 file3 /tmp
Copy Multiple Files in Linux
Copy Multiple Files in Linux

If a large number of files are to be copied, they can be specified with wildcards; if they are named in a sequential pattern (Eg. filename_1, filename_2, etc.) or if there are a large number of files of the same extension (Eg. .mp4).

$ cp *.txt /tmp
$ cp file_* /tmp

The cp command can thus have any number of arguments, which are either files, directories or both. The last argument is the target directory where they are to be copied to.

Copying Large Number of Files: “Argument list too long” Error

While theoretically ‘cp‘ can have as many arguments as possible, there is a predefined limit on the maximum number of arguments that a single command can work with. This is a limit defined in the Linux system and is based on the stack size of the system.

Thus, if a very high number of files are being specified with the wildcard with ‘cp‘, Eg. over a hundred thousand files, it throws an error: “Argument list too long“.

For example, as shown in the image below, the folder contains 100002 files. Thus, it gives the aforementioned error when we run the copy command passing all the files with a wildcard.

$ ls -l | wc -l
$ cp file_* target/
bash: /usr/bin/cp: Argument list too long
bash: /usr/bin/cp: Argument list too long

Solution: Use ‘Find’ Command to Fix “Argument list too long” Error

To solve this problem, we make use of the find command, which basically searches for files in directories based on different parameters. We run ‘find‘ in the same directory as the files we want to copy.

Then we make use of the '-exec' parameter of ‘find‘ which will allow you to run any command over the output of find.

$ find . -maxdepth 1 -name "<filename_pattern>" -exec cp {} <target_directory> \;

Here, the first argument, '.' (current directory) is the directory where to find the files. The argument '-maxdepth 1' considers only the files and directories in the current directory. Without specifying this depth, ‘find‘ command will look through all subdirectories unnecessarily.

The argument "-name" and the string after that specifies the expression using which required files can be listed. Then we specify the ‘cp‘ command after argument '-exec'. The open brackets, '{ }' are a placeholder for the argument which is to be used from output of find.

$ find . -maxdepth 1 -name "file_*" -exec cp {} target/ \;
Copy Large Number of Files in Linux
Copy Large Number of Files in Linux

We can see that the files have been copied successfully to '/target'.

$ cd target/
$ ls | head -10
$ ls -l | wc -l
Confirm Files Copied
Confirm Files Copied

Similarly, if there are directories that are to be copied along with files, we run ‘cp‘ with the '-r' flag in the example below.

$ find . -maxdepth 1 -name "file_*" -exec cp -r {} target/ \;

Note that, in such a case, the directory name should also be searchable with the ‘filename pattern‘.

Related Read: How to Move Large Number of Files in Linux

Conclusion

In this article, we have seen how to copy a large number of files from one directory to another in Linux and thus how to workaround the issue ‘Argument list too long‘.

If you have any feedback or questions, let us know in the comments below!

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

1 thought on “How to Copy Large Number of Files in Linux”

  1. I precisely wanted to appreciate you once again. I’m not certain what I could possibly have handled without the secrets provided by you concerning such an industry. It was actually an absolute fearsome problem for me personally, nevertheless considering the very well-written avenue you treated it forced me to leap over gladness. Now I am thankful for your guidance and thus pray you to know what an amazing job you were undertaking teaching the rest via your blog. I am certain you haven’t encountered any of us.

    Reply

Got something to say? Join the discussion.

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.