{"id":13393469,"url":"https://github.com/johnkerl/miller","last_synced_at":"2026-02-21T16:08:16.323Z","repository":{"id":31440179,"uuid":"35003822","full_name":"johnkerl/miller","owner":"johnkerl","description":"Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON","archived":false,"fork":false,"pushed_at":"2025-05-08T12:15:03.000Z","size":210386,"stargazers_count":9281,"open_issues_count":128,"forks_count":222,"subscribers_count":67,"default_branch":"main","last_synced_at":"2025-05-14T08:02:38.423Z","etag":null,"topics":["command-line","command-line-tools","csv","csv-format","data-cleaning","data-processing","data-reduction","data-regression","devops","devops-tools","json","json-data","miller","statistical-analysis","statistics","streaming-algorithms","streaming-data","tabular-data","tsv","unix-toolkit"],"latest_commit_sha":null,"homepage":"https://miller.readthedocs.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johnkerl.png","metadata":{"files":{"readme":"README-RPM.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2015-05-03T23:00:37.000Z","updated_at":"2025-05-14T02:32:27.000Z","dependencies_parsed_at":"2023-10-20T20:48:58.218Z","dependency_job_id":"6c7bca20-8f0a-47f1-a859-be3100c7b67a","html_url":"https://github.com/johnkerl/miller","commit_stats":{"total_commits":8403,"total_committers":61,"mean_commits":"137.75409836065575","dds":0.0552183743900988,"last_synced_commit":"93574580f90e88bbb0162f06e25c7bf6a28a208d"},"previous_names":[],"tags_count":70,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnkerl%2Fmiller","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnkerl%2Fmiller/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnkerl%2Fmiller/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnkerl%2Fmiller/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnkerl","download_url":"https://codeload.github.com/johnkerl/miller/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254101586,"owners_count":22014907,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["command-line","command-line-tools","csv","csv-format","data-cleaning","data-processing","data-reduction","data-regression","devops","devops-tools","json","json-data","miller","statistical-analysis","statistics","streaming-algorithms","streaming-data","tabular-data","tsv","unix-toolkit"],"created_at":"2024-07-30T17:00:53.635Z","updated_at":"2026-02-21T16:08:16.281Z","avatar_url":"https://github.com/johnkerl.png","language":"Go","funding_links":[],"categories":["C","Go","开源类库","Open source library","Browse CSV","语言资源库","Go 程序设计","statistics","BI \u0026 Data CLI Tools","命令行工具","General Purpose","\u003ca name=\"data-management-tabular\"\u003e\u003c/a\u003eData management - Tabular data","command-line","⚡ Productivity","Bash","Other"],"sub_categories":["终端工具","Terminal Tools","go","网络服务_其他","Community","Useful Linux Tools"],"readme":"## Instructions to make Miller source/binary RPMs for the RPM-experienced\n\nGrab `miller.spec` and go to town.\n\n## Instructions to make Miller source/binary RPMs for the RPM-inexperienced\n\n### One-time setup\nChange `6.2.0` to desired version. Release-package example:\n\nhttps://github.com/johnkerl/miller/releases/download/v6.2.0/miller-6.2.0.tar.gz\n\n```\ncd\nmkdir ~/rpmbuild\nmkdir ~/rpmbuild/SPECS\nmkdir ~/rpmbuild/SOURCES\ncp /your/path/to/miller/clone/miller.spec ~/rpmbuild/SPECS\ncp /your/path/to/miller-6.2.0.tar.gz ~/rpmbuild/SOURCES\n\ncd ~/rpmbuild/SPECS\n```\n\nYou may need to do\n```\nsudo yum install rpmbuild\n```\n\n### Linting\nIf you have changed the `miller.spec` file:\n```\nrpmlint miller.spec\n```\nYou may need to do\n```\nsudo yum install rpmlint\n```\n\n### Build source-RPM only\n```\nrpmbuild -bs miller.spec\nWrote: /your/home/dir/rpmbuild/SRPMS/miller-6.2.0-1.el6.src.rpm\n```\n\n```\nrpm -qpl ../SRPMS/miller-6.2.0-1.el6.src.rpm\nmiller-6.2.0.tar.gz\nmiller.spec\n```\n\n```\nrpm -qpi ../SRPMS/miller-6.2.0-1.el6.src.rpm\nName        : mlr                          Relocations: (not relocatable)\nVersion     : 6.2.0                             Vendor: (none)\n...\n```\n\n### Build source and binary RPMs\n\n```\nrpmbuild -ba miller.spec\n```\n\n```\nrpm -qpl ../RPMS/x86_64//miller-6.2.0-1.el6.x86_64.rpm\n/usr/bin/mlr\n/usr/share/man/man1/mlr.1.gz\n```\n\n```\nsudo rpm -ivh ../RPMS/x86_64/miller-6.2.0-1.el6.x86_64.rpm \nPreparing...                ########################################### [100%]\n   1:mlr                    ########################################### [100%]\n```\n\n```\n/usr/bin/mlr --version\nMiller 6.2.0\n\nman -M /usr/share/man mlr\n```\nand check the version in the DESCRIPTION section.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnkerl%2Fmiller","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnkerl%2Fmiller","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnkerl%2Fmiller/lists"}