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

A set of useful Bash libraries

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

https://github.com/juan131/bash-libraries/blob/637c5a5a7290397c4ac2efdea032da3e4ecb1cc1/lib/libos.bash#L75-L81 can be simplified to: ``` am_i_root() { [[ "$(id -u)" = "0" ]] } ``` or even better: ``` am_i_root() { (($(id -u) == 0)) } ``` or ever...