GitXplorerGitXplorer
d

sh_library

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
a498e3d0af3992007f6dca3a19c7f6cf59f799b5

v0 sh lib

committed 7 years ago
Verified
c10afb0f73a3e32cd592dc7fb51c6ba37e575c86

Initial commit

ddopch committed 7 years ago

README

The README file for this repository.

sh_library

Shell script library

Call Example:

Call my_exit with return code 1 my_exit 1

Get failed service from Centos or Fedora system run_health_check

Get number of attributes given to your shell script get_nb_attr $#

get_attr_by_pos() { echo $@ }

switch_case_yn() { case $0 in y) echo "yes" ;; n) echo "no" ;; *) echo "Other" ;; esac }