|
|
Moving directories between filesystems - Linux
|
Views : 299
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|