X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=dus.c;h=c698d2e551c35f610ad5086cd54c2ba35c816a74;hb=e299f447aad7b0ad4db7ccd745ff224a85c4ca93;hp=2947b5a34be3e8f52d1194253070cee89cd13e8e;hpb=1963a3e9d47673eb126ca00c2679018448c3e196;p=dus.git diff --git a/dus.c b/dus.c index 2947b5a..c698d2e 100644 --- a/dus.c +++ b/dus.c @@ -66,6 +66,10 @@ size_sum_t size_min = -1; /* -1 means no minimum size, otherwise lower bound on the size to display a file/dir */ +int ignore_protected_files = 0; /* Should we simply ignore files or + directories which are protected + ? */ + /********************************************************************/ /* malloc with error checking. */ @@ -100,10 +104,14 @@ size_sum_t entry_size(const char *name) { result = 0; if(lstat(name, &dummy) != 0) { - fprintf(stderr, - "dus: Can not stat %s: %s\n", - name, strerror(errno)); - exit(EXIT_FAILURE); + if(!(errno == EACCES && ignore_protected_files)) { + fprintf(stderr, + "dus: Can not stat %s: %s\n", + name, strerror(errno)); + exit(EXIT_FAILURE); + } else { + return 0; + } } if(S_ISLNK(dummy.st_mode)) { @@ -121,10 +129,12 @@ size_sum_t entry_size(const char *name) { } closedir(dir); } else { - fprintf(stderr, - "dus: Can not open directory %s: %s\n", - name, strerror(errno)); - exit(EXIT_FAILURE); + if(!(errno == EACCES && ignore_protected_files)) { + fprintf(stderr, + "dus: Can not open directory %s: %s\n", + name, strerror(errno)); + exit(EXIT_FAILURE); + } } } else if(S_ISREG(dummy.st_mode)) { result += dummy.st_size; @@ -364,7 +374,7 @@ void print_sorted(struct entry_node *root, int width, int height) { line[width] = '\n'; line[width + 1] = '\0'; } - printf(line); + printf("%s", line); } if(height >= 0 && nb_nodes > height && show_top && !forced_height) { @@ -385,6 +395,8 @@ void usage(FILE *out) { fprintf(out, " -h, --help show this help.\n"); fprintf(out, " -v, --version prints the version number and exit\n"); fprintf(out, " -d, --ignore-dots ignore files and directories starting with a '.'\n"); + fprintf(out, " -i, --ignore-protected ignore files and directories for which we do not\n"); + fprintf(out, " have permission\n"); fprintf(out, " -f, --fancy display size with float values and K, M and G\n"); fprintf(out, " units.\n"); fprintf(out, " -r, --reverse-order reverse the sorting order.\n"); @@ -408,6 +420,7 @@ void usage(FILE *out) { static struct option long_options[] = { { "version", no_argument, 0, 'v' }, { "ignore-dots", no_argument, 0, 'd' }, + { "ignore-protected", no_argument, 0, 'i' }, { "reverse-order", no_argument, 0, 'r' }, { "show-top", no_argument, 0, 't' }, { "help", no_argument, 0, 'h' }, @@ -427,7 +440,7 @@ int main(int argc, char **argv) { setlocale (LC_ALL, ""); - while ((c = getopt_long(argc, argv, "vdfrtl:c:m:hd", + while ((c = getopt_long(argc, argv, "ivdfrtl:c:m:hd", long_options, NULL)) != -1) { switch (c) { @@ -440,6 +453,10 @@ int main(int argc, char **argv) { ignore_dotfiles = 1; break; + case 'i': + ignore_protected_files = 1; + break; + case 'f': fancy_size_display = 1; break;