icon robot josef

dd with progress bar

dd if=/path/to/input of=/path/to/output status=progress

or using pv:

pv /path/to/input | dd of=/path/to/output  

via