Comment Re:Talk / DD / Mount (Score 1) 2362
or ask someone to extract or create a cpio archive without manpages *gg. heck, even with man i doubt much people still know how to use that. granted, tar is more accessible and has made cpio somewhat obsolete when it comes to archiving.
but i still use cpio when migrating data across mountpoints and i need the files to look exactly the same (user, timestamp, link aso):
find . |cpio -paumd $targetdir
so simple, so sexy ;)
but i still use cpio when migrating data across mountpoints and i need the files to look exactly the same (user, timestamp, link aso):
find . |cpio -paumd $targetdir
so simple, so sexy