├── .gitattributes ├── LICENSE ├── README.md ├── _declare_ansi_escape_sequences.sh ├── _die.sh ├── _error.sh ├── _find_nearest_integer.sh ├── _generate_password.sh ├── _get_directory_path.sh ├── _get_file_directory.sh ├── _get_file_extension.sh ├── _get_file_name.sh ├── _get_file_name_without_extension.sh ├── _get_file_path.sh ├── _inform.sh ├── _is_apache_vhost.sh ├── _is_blank.sh ├── _is_empty.sh ├── _is_integer.sh ├── _is_positive_integer.sh ├── _join.sh ├── _lorem.sh ├── _print_args.sh ├── _repeat.sh ├── _send_mail_msg.sh ├── _send_sms_msg.sh ├── _time_convert_s_to_hhmmss.sh ├── _transliterate.sh ├── _trim.sh ├── _urlencode.sh ├── _verify_arg_count.sh ├── _verify_dependencies.sh ├── _warn.sh ├── autoload.sh ├── docs ├── coding-standards.md ├── error-handling.md ├── function-list.md └── makedoc ├── examples ├── _introduce.sh └── session-info ├── resources └── lorem │ ├── les-miserables-by-victor-hugo.txt │ ├── our-national-parks-by-john-muir.txt │ ├── the-aeneid-by-virgil.txt │ ├── the-breath-of-life-by-john-burroughs.txt │ ├── the-origin-of-species-by-charles-darwin.txt │ └── the-rocky-mountain-wonderland-by-enos-mills.txt ├── templates ├── _library_function.sh └── script └── test └── test /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/README.md -------------------------------------------------------------------------------- /_declare_ansi_escape_sequences.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_declare_ansi_escape_sequences.sh -------------------------------------------------------------------------------- /_die.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_die.sh -------------------------------------------------------------------------------- /_error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_error.sh -------------------------------------------------------------------------------- /_find_nearest_integer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_find_nearest_integer.sh -------------------------------------------------------------------------------- /_generate_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_generate_password.sh -------------------------------------------------------------------------------- /_get_directory_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_directory_path.sh -------------------------------------------------------------------------------- /_get_file_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_file_directory.sh -------------------------------------------------------------------------------- /_get_file_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_file_extension.sh -------------------------------------------------------------------------------- /_get_file_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_file_name.sh -------------------------------------------------------------------------------- /_get_file_name_without_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_file_name_without_extension.sh -------------------------------------------------------------------------------- /_get_file_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_get_file_path.sh -------------------------------------------------------------------------------- /_inform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_inform.sh -------------------------------------------------------------------------------- /_is_apache_vhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_is_apache_vhost.sh -------------------------------------------------------------------------------- /_is_blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_is_blank.sh -------------------------------------------------------------------------------- /_is_empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_is_empty.sh -------------------------------------------------------------------------------- /_is_integer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_is_integer.sh -------------------------------------------------------------------------------- /_is_positive_integer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_is_positive_integer.sh -------------------------------------------------------------------------------- /_join.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_join.sh -------------------------------------------------------------------------------- /_lorem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_lorem.sh -------------------------------------------------------------------------------- /_print_args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_print_args.sh -------------------------------------------------------------------------------- /_repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_repeat.sh -------------------------------------------------------------------------------- /_send_mail_msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_send_mail_msg.sh -------------------------------------------------------------------------------- /_send_sms_msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_send_sms_msg.sh -------------------------------------------------------------------------------- /_time_convert_s_to_hhmmss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_time_convert_s_to_hhmmss.sh -------------------------------------------------------------------------------- /_transliterate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_transliterate.sh -------------------------------------------------------------------------------- /_trim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_trim.sh -------------------------------------------------------------------------------- /_urlencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_urlencode.sh -------------------------------------------------------------------------------- /_verify_arg_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_verify_arg_count.sh -------------------------------------------------------------------------------- /_verify_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_verify_dependencies.sh -------------------------------------------------------------------------------- /_warn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/_warn.sh -------------------------------------------------------------------------------- /autoload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/autoload.sh -------------------------------------------------------------------------------- /docs/coding-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/docs/coding-standards.md -------------------------------------------------------------------------------- /docs/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/docs/error-handling.md -------------------------------------------------------------------------------- /docs/function-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/docs/function-list.md -------------------------------------------------------------------------------- /docs/makedoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/docs/makedoc -------------------------------------------------------------------------------- /examples/_introduce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/examples/_introduce.sh -------------------------------------------------------------------------------- /examples/session-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/examples/session-info -------------------------------------------------------------------------------- /resources/lorem/les-miserables-by-victor-hugo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/les-miserables-by-victor-hugo.txt -------------------------------------------------------------------------------- /resources/lorem/our-national-parks-by-john-muir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/our-national-parks-by-john-muir.txt -------------------------------------------------------------------------------- /resources/lorem/the-aeneid-by-virgil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/the-aeneid-by-virgil.txt -------------------------------------------------------------------------------- /resources/lorem/the-breath-of-life-by-john-burroughs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/the-breath-of-life-by-john-burroughs.txt -------------------------------------------------------------------------------- /resources/lorem/the-origin-of-species-by-charles-darwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/the-origin-of-species-by-charles-darwin.txt -------------------------------------------------------------------------------- /resources/lorem/the-rocky-mountain-wonderland-by-enos-mills.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/resources/lorem/the-rocky-mountain-wonderland-by-enos-mills.txt -------------------------------------------------------------------------------- /templates/_library_function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/templates/_library_function.sh -------------------------------------------------------------------------------- /templates/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/templates/script -------------------------------------------------------------------------------- /test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmooring/bash-function-library/HEAD/test/test --------------------------------------------------------------------------------