I'm writing a bash script that needs to fetch source code from several remote subversion repositories. I use svn checkout -q
to avoid displaying long lists of files that clutter the output but now I'm looking for a clean way to display progress info to the user during each svn checkout
. Something in the vein of wget
and curl
's progress indicators. I'll have users in OSX and Linux. pv
is available on both but so far, I haven't found how to use it with svn checkout
. I should also say that I'm not looking for tools that use GUI windows, but text-only tools.
Any suggestions would be very welcome! Thanks!
Closest thing I've found: http://www.danielkraaij.nl/2014/03/30/subversion-progressbar-in-bash/
try:
you can parse the result, and do a progress by file count.