Questions: Difference between revisions
| Line 16: | Line 16: | ||
*Q: How can I merge one directory into another? | *Q: How can I merge one directory into another? | ||
*A: <tt>find srcdir -depth -print0 | cpio -pdm0 targdir</tt>. This uses <tt>cpio</tt>'s passthrough mode. | *A: <tt>find srcdir -depth -print0 | cpio -pdm0 targdir</tt>. This uses <tt>cpio</tt>'s passthrough mode. | ||
*Q: Why doesn't <tt>du</tt> take an -i argument for inode usage? | |||
*A: It's difficult (and impossible for regular users) to map directory hierarchies to inodes. | |||
===Linux=== | ===Linux=== | ||
*Q: How can I discover a module's parameters? | *Q: How can I discover a module's parameters? | ||