29 lines
653 B
Markdown
29 lines
653 B
Markdown
# bashutils
|
|
Provides some nice utility methods for bash scripts.
|
|
|
|
## Features
|
|
- SOSLS v2-compliant logging
|
|
- various check methods
|
|
- easy variable definition
|
|
|
|
## Documentation
|
|
See [bashutils.staropensource.de](https://bashutils.staropensource.de)
|
|
|
|
## Testing
|
|
You run bashutils' tests by invoking the `test.sh` script.
|
|
The test script accepts environment variables as configuration.
|
|
### Configuration
|
|
<table>
|
|
<tr>
|
|
<td>VARIABLE</td>
|
|
<td>TYPE</td>
|
|
<td>DEFAULT</td>
|
|
<td>DESCRIPTION</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>FAILFAST</code></td>
|
|
<td><code>bool</code></td>
|
|
<td><code>false</code></td>
|
|
<td>Terminates if a test fails instead of continuing</td>
|
|
</tr>
|
|
</table>
|