|
|
@@ -18,15 +18,15 @@ svn export . "$DEST" | awk -v start="$start_ts" '
|
|
|
}
|
|
|
{
|
|
|
count++
|
|
|
- if (count % 50 == 0) {
|
|
|
+ if (count % 25 == 0) {
|
|
|
t = elapsed()
|
|
|
- printf("\r[%.1fs] Exported %d items...", t, count)
|
|
|
+ printf("[%.1fs] Exported %d items\n", t, count)
|
|
|
fflush()
|
|
|
}
|
|
|
}
|
|
|
END {
|
|
|
t = elapsed()
|
|
|
- printf("\r[%.1fs] Exported %d items.\n", t, count)
|
|
|
+ printf("[%.1fs] Exported %d items (done)\n", t, count)
|
|
|
}
|
|
|
'
|
|
|
|