61
11
I have a very large folder of 120,000+ files. and I need to move them to another location on my same machine (same partition).
I'd like to use the tar
command to group them up as a single unit and then mv
them to the end location.
What command do I need to run to tar
them all together and not compress anything (I need the fastest result).
@vonbrand one might want to rsync over the network one single continuous file. much faster than rsyncing 120k smaller files. it's the difference between constant full speed to highs and lows – mwm – 2018-11-29T12:19:07.030
1Why use tar, and not just mv(1) the files? Or use cp(1) if you don't want to lose the originals? – vonbrand – 2013-01-11T17:58:59.267