{"id":46305297,"url":"https://github.com/gnualmalki/udu","last_synced_at":"2026-06-20T14:32:01.845Z","repository":{"id":314369857,"uuid":"1055234810","full_name":"gnualmalki/udu","owner":"gnualmalki","description":"extremely fast command-line disk usage analyzer","archived":false,"fork":false,"pushed_at":"2025-11-30T22:28:52.000Z","size":250,"stargazers_count":21,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-04T17:48:31.607Z","etag":null,"topics":["cli","cross-platform","disk-usage","linux","macos","utility","windows"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gnualmalki.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-12T01:17:56.000Z","updated_at":"2025-12-02T21:33:44.000Z","dependencies_parsed_at":"2025-09-12T04:41:27.072Z","dependency_job_id":"fe528843-b6df-450c-bd33-78c7a03fb9e4","html_url":"https://github.com/gnualmalki/udu","commit_stats":null,"previous_names":["makestatic/udu","gnualmalki/udu"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/gnualmalki/udu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnualmalki%2Fudu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnualmalki%2Fudu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnualmalki%2Fudu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnualmalki%2Fudu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gnualmalki","download_url":"https://codeload.github.com/gnualmalki/udu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnualmalki%2Fudu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34573729,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","cross-platform","disk-usage","linux","macos","utility","windows"],"created_at":"2026-03-04T12:03:33.758Z","updated_at":"2026-06-20T14:32:01.836Z","avatar_url":"https://github.com/gnualmalki.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UDU\n\nUDU is an extremely fast POSIX-command-line-program for summarizing file and directory sizes by recursively scanning directories using a parallel traversal engine implemented with [OpenMP](https://www.openmp.org/) making it significantly faster than traditional tools on multi-core systems.\n\nSee [Benchmarks](./BENCHMARKS.md).\n\n## Installation\n\n### Pre-built Binaries\n\nYou can download pre-built binaries from the [GitHub Releases](https://github.com/gnualmalki/udu/releases) page.\n\n### Build from Source\n\nBuilding UDU requires a modern C compiler such as [GCC](https://gcc.gnu.org/) 9.5 or [Clang](https://clang.llvm.org/) 14.0.0 (or later), [GNU Make](https://www.gnu.org/software/make/), and [OpenMP](https://www.openmp.org/) 3.0 or later (optional: for parallel processing).\n\nClone the repository and build using these commands:\n\n```bash\ngit clone --depth=1 https://github.com/gnualmalki/udu.git\ncd udu\nmake -B\n```\n\nInstall with:\n```bash\nmake install # may require sudo\n```\n\n## Usage\n\n```bash\nUsage: udu [option(s)...] [path(s)...]\n Extremely fast disk-usage analyzer with a parallel traversal engine.\n\n OPTIONS:\n  -a, --apparent-size    show file sizes instead of disk usage\n                          (apparent = bytes reported by the filesystem,\n                           disk usage = actual space allocated)\n  -h, --help             display this help and exit\n  -q, --quiet            display output only at program exit (default)\n  -v, --verbose          display each processed file\n  -t, --tree             mimic the output of 'tree' command\n      --version          display version information and exit\n  -X, --exclude=PATTERN  skip files or directories that match a glob pattern\n                          *        any characters\n                          ?        a single character\n                          [abc]    any character in the set\n                          Examples: '*.log', 'temp?', '[0-9]*'\n EXAMPLE:\n  udu ~/ -avX epstein-files\n\nReport bugs at \u003chttps://github.com/makestatic/udu/issues\u003e\n```\n\n## License\n\n\u003csub\u003eTHIS PROGRAM IS FREE SOFTWARE: YOU CAN REDISTRIBUTE IT AND/OR MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION, EITHER VERSION 3 OF THE LICENSE, OR ANY LATER VERSION.\u003c/sub\u003e\n\n\u003csub\u003eTHIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU GENERAL PUBLIC LICENSE FOR MORE DETAILS.\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnualmalki%2Fudu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgnualmalki%2Fudu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnualmalki%2Fudu/lists"}