Skip to content

Instantly share code, notes, and snippets.

@startergo
Created July 24, 2023 22:01
Show Gist options
  • Save startergo/f21a56a9287308b3238dabb6b607e47f to your computer and use it in GitHub Desktop.
Save startergo/f21a56a9287308b3238dabb6b607e47f to your computer and use it in GitHub Desktop.
Track dd progress in terminal
  • Progress can track progress of data transfer processes. Install with:
brew install progress
  • Then launch dd, get its PID with:
ps aux | grep "dd"
  • Or with pidof
brew install pidof
  • And use the tool to track progress:
sudo progress -mp 87370
  • Result:
[87370] dd ~/Desktop/Mavericks.iso
        60.9% (4.4 GiB / 7.1 GiB) 5.3 MiB/s remaining 0:09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment