Moving directories between filesystems - Linux Views : 299
Tagged in : Linux
0 0
Send mail
Moving directories between filesystems

Quick way to move an entire tree of files from one disk to another

(cd /source/directory && tar cf - . ) | (cd /dest/directory && tar xvfp -)


Change from cd /source/directory; tar....etc. to prevent possibility of trashing directory in case of disaster.



By Sanju, On - 2009-12-29



    Login to add Comments .