{"id":15136227,"url":"https://github.com/itpey/chunker","last_synced_at":"2026-01-29T00:03:43.917Z","repository":{"id":237843166,"uuid":"737638351","full_name":"itpey/chunker","owner":"itpey","description":"Go command-line utility that splits large files into smaller chunks.","archived":false,"fork":false,"pushed_at":"2024-05-02T13:09:19.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T14:41:35.337Z","etag":null,"topics":["amazon-s3","aws-s3","ceph","chunk","cli","cli-app","command-line","command-line-tool","file","go","go-lang","golang-application","minio","nextcloud","s3","storage","terminal"],"latest_commit_sha":null,"homepage":"https://github.com/itpey/chunker","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itpey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-12-31T21:35:06.000Z","updated_at":"2024-08-16T08:43:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"687c43cf-4d02-4d57-97b9-b47101f3cdbb","html_url":"https://github.com/itpey/chunker","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"d03bd7e7b811c9c0127339200ad119309215acc2"},"previous_names":["itpey/chunker"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/itpey/chunker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpey%2Fchunker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpey%2Fchunker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpey%2Fchunker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpey%2Fchunker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itpey","download_url":"https://codeload.github.com/itpey/chunker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpey%2Fchunker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28856911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"ssl_error","status_checked_at":"2026-01-28T22:56:00.861Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["amazon-s3","aws-s3","ceph","chunk","cli","cli-app","command-line","command-line-tool","file","go","go-lang","golang-application","minio","nextcloud","s3","storage","terminal"],"created_at":"2024-09-26T06:04:37.521Z","updated_at":"2026-01-29T00:03:43.901Z","avatar_url":"https://github.com/itpey.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[//]: # \"Attendees: itpey\"\n[//]: # \"Tags: #itpey #go #chunker #golang #go-lang #cli #command-line #split\"\n\n\u003ch1 align=\"center\"\u003eChunker\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\nChunker is a command-line utility written in Go that splits a large file into smaller chunks based on a specified size. It's useful for breaking down large files into manageable pieces for easier handling or transfer.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://pkg.go.dev/github.com/itpey/chunker\"\u003e\n    \u003cimg src=\"https://pkg.go.dev/badge/github.com/itpey/chunker.svg\" alt=\"Go Reference\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/itpey/chunker/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/itpey/chunker\" alt=\"license\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# Features\n\n- Split large files into smaller chunks.\n- Specify the size of each chunk using intuitive size units (e.g., KB, MB, GB).\n- Simple and easy-to-use command-line interface.\n\n# Installation\n\nMake sure you have [Go](https://go.dev) installed and configured on your system. Use go install to install Chunker:\n\n```bash\ngo install github.com/itpey/chunker@latest\n```\n\nEnsure that your `GOBIN` directory is in your `PATH` for the installed binary to be accessible globally.\n\n# Usage\n\n```bash\nchunker \u003cinputFilePath\u003e \u003coutputPrefix\u003e \u003cchunkSize\u003e\n```\n\n- **inputFilePath**: Path to the input file that needs to be split.\n- **outputPrefix**: Prefix for the output chunk files.\n- **chunkSize**: Size of each chunk. Examples: 1KB, 5MB, 1GB.\n\n## Example\n\n```bash\nchunker input.txt outputChunk 1MB\n```\n\nThis command will split input.txt into approximately 1MB chunks named outputChunk_1, outputChunk_2, etc.\n\n# Supported Size Units\n\n- **B**: Bytes\n- **KB**: Kilobytes (1024 bytes)\n- **MB**: Megabytes (1024 KB)\n- **GB**: Gigabytes (1024 MB)\n\n# Feedback and Contributions\n\nIf you encounter any issues or have suggestions for improvement, please [open an issue](https://github.com/itpey/chunker/issues) on GitHub.\n\nWe welcome contributions! Fork the repository, make your changes, and submit a pull request.\n\n# License\n\nChunker is open-source software released under the Apache License, Version 2.0. You can find a copy of the license in the [LICENSE](https://github.com/itpey/chunker/blob/main/LICENSE) file.\n\n# Author\n\nChunker was created by [itpey](https://github.com/itpey)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpey%2Fchunker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitpey%2Fchunker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpey%2Fchunker/lists"}