Copy a large directory of files using ls and xargs
ls . | xargs -i -t cp ./{} /path/to/new/directory
See example 12-6 at http://www.homepage.montana.edu/~unixuser/051905/abs-guide/moreadv.html
ls . | xargs -i -t cp ./{} /path/to/new/directory
See example 12-6 at http://www.homepage.montana.edu/~unixuser/051905/abs-guide/moreadv.html