SdcardBackupRestore
SdcardBackupRestore copied to clipboard
progress meter
thanks for the cool script.
any chance on adding something like a progress bar during the copy/restore? it may not know percentage but could maybe tell you how much has been transferred.
Hi @fone , as far as I know you can watch the amount of data being copied from the SD card. Change this line to:
sudo dd bs=4M if=${DISK} status=progress | gzip > raspbian_backup_image`date +%d%m%y`.gz
The status=progress
option will show you the amount of data that's being transferred from the SD card.