{"id":17597746,"url":"https://github.com/ismaildrs/ezb","last_synced_at":"2026-01-03T14:45:56.354Z","repository":{"id":240233677,"uuid":"793600545","full_name":"ismaildrs/EZB","owner":"ismaildrs","description":"EZB is a command-line tool designed to simplify backing up files to Backblaze B2 cloud storage. It supports various backup functionalities including automatic, threaded, and forked backups.","archived":false,"fork":false,"pushed_at":"2024-05-18T12:27:49.000Z","size":28013,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T23:52:03.043Z","etag":null,"topics":["backblaze-b2","bash","clanguage","command-line-tool","linux","linux-shell","shell"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ismaildrs.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":"2024-04-29T14:25:42.000Z","updated_at":"2024-10-09T21:13:56.000Z","dependencies_parsed_at":"2024-10-23T04:05:42.721Z","dependency_job_id":null,"html_url":"https://github.com/ismaildrs/EZB","commit_stats":null,"previous_names":["ismaildrs/ezb"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FEZB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FEZB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FEZB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FEZB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ismaildrs","download_url":"https://codeload.github.com/ismaildrs/EZB/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244047646,"owners_count":20389206,"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":["backblaze-b2","bash","clanguage","command-line-tool","linux","linux-shell","shell"],"created_at":"2024-10-22T09:36:04.621Z","updated_at":"2026-01-03T14:45:56.324Z","avatar_url":"https://github.com/ismaildrs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EZB (Easy Backup) Command Line Tool\n\n![EZB LOGO](ezb_logo.png)\n\nEZB is a command-line tool designed to simplify backing up files to Backblaze B2 cloud storage. It supports various backup functionalities including automatic, threaded, and forked backups.\n\n## Installation\n\nTo install EZB, run the following command:\n```sh\nchmod +x ./ezb.sh\nsudo ./ezb.sh -i\n```\n\n## Commands and Usage\n\n### Help\nDisplays help information about the EZB tool.\n```sh\nezb -h\n```\n\n### Manual Backup\nManually backup a specified file to Backblaze B2.\n```sh\nsudo ezb -m -s \u003cfilename\u003e -n \u003cname\u003e\n```\n\n- `\u003cfilename\u003e`: The name of the file to be backed up.\n- `\u003cname\u003e`: The name to assign to the backup in B2.\n\n### Automatic Backup\nAutomatically backup a specified file to Backblaze B2.\n```sh\nsudo ezb -a -s \u003cfilename\u003e -n \u003cname\u003e\n```\n\n- `\u003cfilename\u003e`: The name of the file to be backed up.\n- `\u003cname\u003e`: The name to assign to the backup in B2.\n\n### View Log\nView the backup log to see the history and status of backups.\n```sh\nsudo ezb -l\n```\n\n### Restore Backup\nRestore a file from Backblaze B2.\n```sh\nezb -r\n```\n\n### Threaded Backup\nPerform a threaded backup of a specified folder to Backblaze B2.\n```sh\nsudo ezb -t -m -s \u003cfoldername\u003e -n \u003cname\u003e\n```\n\n- `\u003cfoldername\u003e`: The name of the folder to be backed up.\n- `\u003cname\u003e`: The name to assign to the backup in B2.\n\n### Forked Backup\nPerform a forked backup of a specified folder to Backblaze B2.\n```sh\nsudo ezb -fo -m -s \u003cfoldername\u003e -n \u003cname\u003e\n```\n\n- `\u003cfoldername\u003e`: The name of the folder to be backed up.\n- `\u003cname\u003e`: The name to assign to the backup in B2.\n\n### Configure\nConfigure EZB with your Backblaze B2 credentials.\n```sh\nsudo ezb -co \u003cb2_api_key\u003e \u003cb2_id\u003e \u003cb2_bucket_name\u003e\n```\n\n- `\u003cb2_api_key\u003e`: Your Backblaze B2 API key.\n- `\u003cb2_id\u003e`: Your Backblaze B2 account ID.\n- `\u003cb2_bucket_name\u003e`: The name of your Backblaze B2 bucket.\n\n## Examples\n\n1. **Manual Backup**:\n   ```sh\n   sudo ezb -m -s /path/to/file.txt -n my_backup\n   ```\n\n2. **Automatic Backup**:\n   ```sh\n   sudo ezb -a -s /path/to/file.txt -n my_auto_backup\n   ```\n\n3. **Threaded Backup**:\n   ```sh\n   sudo ezb -t -m -s /path/to/folder -n my_threaded_backup\n   ```\n\n4. **Forked Backup**:\n   ```sh\n   sudo ezb -fo -m -s /path/to/folder -n my_forked_backup\n   ```\n\n5. **Configure EZB**:\n   ```sh\n   sudo ezb -co your_b2_api_key your_b2_id your_b2_bucket_name\n   ```\n\n## Additional Information\n\nFor more detailed usage and options, refer to the help command:\n```sh\nezb -h\n```\n\n## Acknowledgments\n\n- Backblaze B2 Cloud Storage\n\nFor support or further information, please contact the project maintainers.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismaildrs%2Fezb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fismaildrs%2Fezb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismaildrs%2Fezb/lists"}