*
*/
-#define VERSION_NUMBER "1.0alpha"
+#define VERSION_NUMBER "1.1alpha"
#define _BSD_SOURCE
int show_top = 0; /* 1 means to show the top of the sorted list
instead of the bottom */
+size_sum_t size_min = -1; /* -1 means no minimum size, otherwise lower
+ bound on the size to display a
+ file/dir */
+
/********************************************************************/
/* malloc with error checking. */
return result;
}
+size_sum_t atoss(const char *string) {
+ size_sum_t total, partial_total;
+ const char *c;
+ total = 0;
+ partial_total = 0;
+
+ for(c = string; *c; c++) {
+ if(*c >= '0' && *c <= '9') {
+ partial_total = 10 * partial_total + ((int) (*c - '0'));
+ } else if(*c == 'K' || *c == 'k') {
+ total += partial_total * 1024;
+ partial_total = 0;
+ } else if(*c == 'M' || *c == 'm') {
+ total += partial_total * 1024 * 1024;
+ partial_total = 0;
+ } else if(*c == 'G' || *c == 'g') {
+ total += partial_total * 1024 * 1024 * 1024;
+ partial_total = 0;
+ } else {
+ fprintf(stderr, "Syntax error in %s\n", string);
+ }
+ }
+ return total;
+}
+
/**********************************************************************/
struct file_with_size {
void fancy_print(char *buffer, char *filename, size_sum_t size) {
if(size < 1024) {
sprintf(buffer,
- "% 7d %s\n",
+ "% 7d -- %s\n",
((int) size),
filename);
} else if(size < 1024 * 1024) {
sprintf(buffer,
- "% 6.1fK %s\n",
+ "% 6.1fK -- %s\n",
((double) (size))/(1024.0),
filename);
} else if(size < 1024 * 1024 * 1024) {
sprintf(buffer,
- "% 6.1fM %s\n",
+ "% 6.1fM -- %s\n",
((double) (size))/(1024.0 * 1024),
filename);
} else {
sprintf(buffer,
- "% 6.1fG %s\n",
+ "% 6.1fG -- %s\n",
((double) (size))/(1024.0 * 1024.0 * 1024.0),
filename);
}
}
for(n = first; n < last; n++) {
- if(fancy_size_display) {
- fancy_print(line, nodes[n]->filename, nodes[n]->size);
- } else {
- raw_print(line, nodes[n]->filename, nodes[n]->size);
- }
- if(width >= 0 && width < BUFFER_SIZE) {
- line[width] = '\0';
+ if(size_min < 0 || nodes[n]->size >= size_min) {
+ if(fancy_size_display) {
+ fancy_print(line, nodes[n]->filename, nodes[n]->size);
+ } else {
+ raw_print(line, nodes[n]->filename, nodes[n]->size);
+ }
+ if(width >= 0 && width < BUFFER_SIZE) {
+ line[width] = '\0';
+ }
+ printf(line);
}
- printf(line);
}
free(nodes);
fprintf(out, " not a tty.\n");
fprintf(out, " -l <lines> same as -c for number of lines.\n");
fprintf(out, " -h show this help.\n");
+ fprintf(out, " -m <size> size min.\n");
fprintf(out, "\n");
fprintf(out, "Report bugs and comments to <francois@fleuret.org>\n");
}
setlocale (LC_ALL, "");
while (1) {
- c = getopt(argc, argv, "dfrtl:c:hdu");
+ c = getopt(argc, argv, "dfrtl:c:m:hdu");
if (c == -1)
break;
forced_width = atoi(optarg);
break;
+ case 'm':
+ size_min = atoss(optarg);
+ break;
+
case 'h':
print_help(stdout);
exit(EXIT_SUCCESS);