I have a list of files I need to copy on a Linux system - each file ranges from 10 to 100GB in size.
I only want to copy to the local filesystem. Is there a way to do this in parallel - with multiple processes each responsible for copying a file - in a simple manner?
I can easily write a multithreaded program to do this, but I'm interested in finding out if there's a low level Linux method for doing this.