[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: General method for copying a partition



17.02.2010 19:18, Stephen Powell kirjoitti:
[...]

Of course, special handling is necessary to avoid processing "." (the current
directory) and ".." (the parent directory).  Does anyone know a better way?


tar cf  . | tar -C /target -xpf -


or


find . -depth -print0 |cpio --null -pvd /target


Reply to: