{"id":13537209,"url":"https://github.com/elibs/ebash","last_synced_at":"2026-04-16T23:06:58.395Z","repository":{"id":41965217,"uuid":"160358535","full_name":"elibs/ebash","owner":"elibs","description":"enhanced bash","archived":false,"fork":false,"pushed_at":"2026-04-03T08:20:08.000Z","size":3290,"stargazers_count":21,"open_issues_count":18,"forks_count":3,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2026-04-03T08:29:07.788Z","etag":null,"topics":["bash","bash-script","bash-scripting","error-detection","higher-level-languages"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/elibs.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-12-04T13:04:18.000Z","updated_at":"2026-04-02T19:55:31.000Z","dependencies_parsed_at":"2022-08-12T00:50:22.389Z","dependency_job_id":"f35d36f5-c4d6-4f42-81b1-58fe7f76dc2f","html_url":"https://github.com/elibs/ebash","commit_stats":null,"previous_names":[],"tags_count":352,"template":false,"template_full_name":null,"purl":"pkg:github/elibs/ebash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elibs%2Febash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elibs%2Febash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elibs%2Febash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elibs%2Febash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elibs","download_url":"https://codeload.github.com/elibs/ebash/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elibs%2Febash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31433044,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: 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":["bash","bash-script","bash-scripting","error-detection","higher-level-languages"],"created_at":"2024-08-01T09:00:56.325Z","updated_at":"2026-04-05T11:01:12.499Z","avatar_url":"https://github.com/elibs.png","language":"Shell","readme":"\u003e **_NOTE:_** **Documentation is best viewed on [github-pages](https://elibs.github.io/ebash)**\n\n[![CI/CD](https://github.com/elibs/ebash/actions/workflows/pipeline.yml/badge.svg?branch=develop)](https://github.com/elibs/ebash/actions/workflows/pipeline.yml)\n[![Version](https://img.shields.io/badge/version-v2.1.8-blue)](https://github.com/elibs/ebash/releases)\n\n\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"Bash\" src=\"https://raw.githubusercontent.com/odb/official-bash-logo/master/assets/Logos/Identity/PNG/BASH_logo-transparent-bg-color.png\"\u003e\n\u003c/p\u003e\n\n# Overview\n\nebash is an open source project developed at [NetApp/SolidFire](https://www.netapp.com/data-storage/solidfire) as an open source project from 2011-2018 under the name `bashutils`\nand the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0). [I](https://github.com/marshall-mcmullen) forked `bashutils` into `ebash` upon my departure from NetApp/SolidFire to continue active\ndevelopment and ensure it remained free and open source.\n\nThe primary goal of ebash is to significantly enhance bash code and make it more *robust*, *feature rich* and *simple* which\ngreatly accelerates developer productivity.\n\n## Why _bash_\n\nBash is the ideal language of choice for writing low-level shell scripts and tools requiring direct shell access\ninvoking simple shell commands on a system for a number of reasons:\n\n* Prolific. Installed on every UNIX machine, minimizing dependencies, install complexity and size.\n* Lightweight with low memory and CPU requirements suitable for appliances and embedded systems.\n* Ideal for tasks running shell commands as it is native, and simpler than in higher level languages.\n\n## Why _ebash_\n\nBecause bash is a lower level language, it lacks some of the features and more advanced data structures typically found\nin higher level languages. ebash aims to be _the_ answer to this problem. The most important and compelling feature of\nebash is [implicit error detection](doc/implicit-error-detection.md). This typically results in bash scripts being 75% shorter due to removal of explicit\nerror handling and the ability to leverage extensive [ebash modules](doc/modules/index).\n\n* [Implicit error detection](doc/implicit-error-detection.md)\n* [Logging framework](doc/logging.md)\n* [Debugging](doc/debugging.md)\n* [Data structures](doc/data-structures.md)\n* [Option parsing](doc/opt.md)\n* [Testing](doc/etest.md)\n* [Mocking](doc/emock.md)\n* [Linting](doc/binaries/bashlint.md)\n* [Benchmarking](doc/binaries/ebench.md)\n* [Compatibility](doc/compatibility.md)\n\n## Quick Start\n\n* [Installation](doc/installation.md)\n* [Usage](doc/usage.md)\n* [Porting](doc/porting.md)\n* [Modules documentation](doc/modules/index.md)\n* [Binaries documentation](doc/binaries/index.md)\n* [Style Guide](doc/style.md)\n* [Bash Gotchas](doc/gotchas.md)\n* [Bash Resources](doc/links.md)\n","funding_links":[],"categories":["Libraries"],"sub_categories":["Reusable Things"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felibs%2Febash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felibs%2Febash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felibs%2Febash/lists"}