STeve Andre wrote: > For simple large files, is there a faster way to move them rather > than using mv? I have a lot of large files (>10G) that need to be > rearranged on which disk they reside on.
Hi, If the files are on the same partition, mv(1) or ln(1) will be almost instantanous.. otherwise just cp(1) and rm(1). -Brynet.