Skip to content

Instantly share code, notes, and snippets.

@kanngard
Forked from sarvsav/Bash project
Last active June 4, 2026 11:14
Show Gist options
  • Select an option

  • Save kanngard/43bf18d189c3a170666d5bf48ec1c718 to your computer and use it in GitHub Desktop.

Select an option

Save kanngard/43bf18d189c3a170666d5bf48ec1c718 to your computer and use it in GitHub Desktop.
Bash project directory structure
├── bin => Contains the scripts of your project
│ └── resources => any resources needed for the scripts
├── docs => Contains documentation and future aspects about your project
├── CONTRIBUTING.md => Contains information how to contribute code, bugs, documentation etc.
├── etc => Add configuration files under this directory
│ └── imdb-xplorer.cfg => Configuration file
├── LICENSE => Add license for your project
├── lib => Contains any scripts that are included in the scripts in bin
├── README.md => Contains how to install, test and use your project
├── setup.sh => install the project on your machine
├── test => contains test code of your project
│ └── resources
│ │ └── template.json => configuration for source code
│ └── imdb-xplorer-test.sh => source code for tests
└── TODO.md => ToDo List of your project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment