bash-utility icon indicating copy to clipboard operation
bash-utility copied to clipboard

Bash library which provides utility functions and helpers for functional programming in Bash.

Results 2 bash-utility issues
Sort by recently updated
recently updated
newest added

Just wrote some small code for `_detectLinuxDistroFamily_`, eventually you may want to include this, [it's here](https://github.com/flameletlabs/flamelet/commit/ed082536a240905fcd1f45b0f940d67683841f46).

(1) I see bash-utility heavily using ```bash [[ $# -lt 2 ]] && ... ``` Wouldn't it be more readable to do ```bash (( $# < 2 )) && ......