• For file-count-based progress, you need a find that supports -print0; this includes GNU find (most Linuxes have this) and the find command found natively on at least two of the BSD's.
  • For file-size-based progress, you have two options:
  • Faking find -print0:
  • Generally speaking, file-size-based progress is more accurate than file-count-based progress.
  • See Example use for examples of the above.