Copy file in GNU/Linux with progress bar and rate limiting
Fresh3 days ago
Mar 15, 202610695 viewsConfidence Score0%
0%
Problem
Is there any good tool in GNU/Linux that copy files like , but also shows progress and limits speed (and changes limit without interruption) like ? Prototype: Also , but this shows progress bars individually and can't change rate after started. Or may be I should just write a wrapper for pv/cpio? D…
Error Output
find source_directory | cpio -H newc -o | pv -s `du -bs source_directory/ | awk '{print $1}'` | (cd /destination/directory && cpio -di)Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: Copy file in GNU/Linux with progress bar and rate limiting
Low Risk
Written the script to use find, cpio and pv to accomplish the task. The rate can be limited. http://vi-server.org/vi/bin/cppv Mirroring it here: Someone, please test it.
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix