Teracopy Linux Portable Now
# Instead of dragging 5 folders, run this to copy them one by one for file in "/source/dir1" "/source/dir2" "/source/dir3"; do pv -tpreb "$file" | dd of="/destination/$(basename $file)" bs=1M done Solution: rsync with checksum, or md5deep after copy.
rsync -avhc --progress /source/ /destination/ # The -c flag forces checksum comparison, not just timestamp/size. teracopy linux
echo "[$CURRENT/$TOTAL] Copying $RELATIVE_PATH" # Instead of dragging 5 folders, run this