https://github.com/MTecknology/script-helpers
A simple set of helper functions to aid the development of scripts.
https://github.com/MTecknology/script-helpers
bash libraries python shell
Last synced: 3 months ago
JSON representation
A simple set of helper functions to aid the development of scripts.
- Host: GitHub
- URL: https://github.com/MTecknology/script-helpers
- Owner: MTecknology
- License: gpl-3.0
- Created: 2020-11-18T03:40:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-22T08:13:19.000Z (about 3 years ago)
- Last Synced: 2024-02-13T21:59:29.868Z (over 1 year ago)
- Topics: bash, libraries, python, shell
- Language: Shell
- Homepage: https://script-helpers.readthedocs.io/
- Size: 133 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/MTecknology/script_helpers/issues)
[](https://opensource.org/licenses/gpl-3.0+.html)
[](https://script-helpers.readthedocs.io/en/latest/?badge=latest)
[](https://www.codacy.com/gh/MTecknology/script-helpers/dashboard?utm_source=github.com&utm_medium=referral&utm_content=MTecknology/script-helpers&utm_campaign=Badge_Grade)

**[Explore the docs »](https://script-helpers.rtfd.io/)**
Script Helpers
==============A simple set of helper functions to aid the development of scripts.
Shell Example:
```sh
. path/to/helpers/shell
is_true "$var" || die 'oops'
```Python Example:
```python3
import py3helpers
py3helpers.collapse_integers([1,2,3,4])
```