Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.1%) to scientific vocabulary
Keywords
bash
shell
Last synced: 6 months ago
·
JSON representation
·
Repository
A template for smithing Bash scripts.
Basic Info
- Host: GitHub
- Owner: bkuhlmann
- License: other
- Language: Shell
- Default Branch: main
- Homepage: https://alchemists.io/projects/bashsmith
- Size: 247 KB
Statistics
- Stars: 22
- Watchers: 3
- Forks: 4
- Open Issues: 0
- Releases: 0
Topics
bash
shell
Created over 11 years ago
· Last pushed 7 months ago
Metadata Files
Readme
Funding
License
Citation
README.adoc
:toc: macro :toclevels: 5 :figure-caption!: = Bashsmith Bashsmith is a project template for smithing new link:https://www.gnu.org/software/bash[Bash] shell-based projects based on best practices. This project is meant to be cloned and customized for your specific shell scripting needs giving you a foundation from which to get started faster than with an empty slate. toc::[] == Features * Provides default project structure for creating new Bash projects. * Provides default settings for making Bash scripts easier to develop and debug. == Requirements * link:https://www.gnu.org/software/bash[Bash] == Setup To install, run: [source,bash] ---- git clone https://github.com/bkuhlmann/bashsmith.git cd bashsmith git checkout 6.7.0 ---- == Usage === File Structure All files located within this project provide the basic structure/blueprint for creating new Bash script projects. The structure is organized as follows: .... ├── CHANGES.adoc # The details of past version releases. ├── CODE_OF_CONDUCT.adoc # Guidelines for encouraging harassment-free contributions. ├── CONTRIBUTING.adoc # The details of how to contribute to the project. ├── LICENSE.adoc # The license and copyright legalities of the project. ├── README.adoc # The project overview, setup, usage, testing, etc. ├── bin # A folder for executable Bash scripts. │ └── run # The main run script (which loads the lib and settings). ├── lib # A folder for Bash functions and custom code. │ └── cli.sh # Provides CLI prompt options for the main `run` script. ├── settings # The global/project settings for easy manipulation/tweaking. │ └── main.sh # The global settings (set with safe defaults). .... === Template The following documents what each template option is: [source,bash] ---- # Exit, with error message, when attempting to use an undefined variable. # Alias: `set -u`. set -o nounset # Abort script at first error when a command exits with non-zero status. # Alias: `set -e`. set -o errexit # Return exit status of the last command in the pipe that returned a non-zero return value. set -o pipefail # Defines newlines and tabs as delimiters for splitting words and iterating arrays. IFS=$'\n\t' ---- === Debugging For debugging purposes, you can add the following option: [source,bash] ---- # Prints all executed commands. # Alias: `set -x`. set -o xtrace ---- The above is useful for debugging purposes but probably not something you want always enabled. 💡 For additional options, use `help set` to learn more. == Development To contribute, run: [source,bash] ---- git clone https://github.com/bkuhlmann/bashsmith.git cd bashsmith ---- == Tests Consider using link:https://github.com/sstephenson/bats[Bats]. == link:https://alchemists.io/policies/license[License] == link:https://alchemists.io/policies/security[Security] == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct] == link:https://alchemists.io/policies/contributions[Contributions] == link:https://alchemists.io/policies/developer_certificate_of_origin[Developer Certificate of Origin] == link:https://alchemists.io/projects/bashsmith/versions[Versions] == link:https://alchemists.io/community[Community] == Credits Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
Owner
- Name: Brooke Kuhlmann
- Login: bkuhlmann
- Kind: user
- Location: Boulder, CO USA
- Company: Alchemists
- Website: https://alchemists.io
- Repositories: 56
- Profile: https://github.com/bkuhlmann
Quality over quantity.
Citation (CITATION.cff)
cff-version: 1.2.0
message: Please use the following metadata when citing this project in your work.
title: Bashsmith
abstract: A template for smithing Bash scripts.
version: 6.7.0
license: Hippocratic-2.1
date-released: 2025-07-15
authors:
- family-names: Kuhlmann
given-names: Brooke
affiliation: Alchemists
orcid: https://orcid.org/0000-0002-5810-6268
keywords:
- bash
- shell
- scripts
- generator
- templates
- best practices
repository-code: https://github.com/bkuhlmann/bashsmith
repository-artifact: https://alchemists.io/projects/bashsmith
url: https://alchemists.io/projects/bashsmith
GitHub Events
Total
- Watch event: 3
- Delete event: 182
- Push event: 20
- Fork event: 1
- Create event: 52
Last Year
- Watch event: 3
- Delete event: 182
- Push event: 20
- Fork event: 1
- Create event: 52
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
Gemfile
rubygems
- caliber ~> 0.11
- git-lint ~> 4.0
- rake ~> 13.0