Wednesday, December 28, 2011

cpio archive creation and extraction

use the following to create archive:
find . -print|cpio -ovcBO <archive path name>

use following to extract it:
cpio -ivI <archive path name>

No comments:

Post a Comment