Displaying 1 result from an estimated 1 matches for "abbrevr".
Did you mean:
abbrev
2000 Aug 24
0
patch for a few things
...;q':
showprogress = 0;
break;
+ case 'b':
+ bitspersec = 1;
+ break;
case '?':
default:
usage();
***************
*** 1129,1134 ****
--- 1154,1162 ----
struct timeval now, td, wait;
off_t cursize, abbrevsize;
double elapsed;
+ double rate, abbrevrate;
+ int j;
+ char b;
int ratio, barlength, i, remaining;
char buf[256];
***************
*** 1148,1157 ****
ratio = MIN(ratio, 100);
} else
ratio = 100;
! snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
!
! barlength = getttywidth() - 51;
b...