From 3c6dd1b7adc8b636fff8890ca5de7dd7548062ea Mon Sep 17 00:00:00 2001 From: Chris Corwin Date: Wed, 10 Sep 2014 12:04:01 -0400 Subject: [PATCH 1/4] (csc-running-branch) modified x-bits --- SOURCEME | 0 functions/__center.sh | 0 functions/__get_env.sh | 0 functions/__indent.sh | 0 functions/__is_stdin.sh | 0 functions/__menu.sh | 0 functions/__path_append.sh | 0 functions/__path_prepend.sh | 0 functions/__path_remove.sh | 0 functions/__short_ans.sh | 0 functions/__source_all.sh | 0 functions/__str_repeat.sh | 0 functions/__strlen.sh | 0 functions/__to_lower.sh | 0 functions/__to_upper.sh | 0 15 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 SOURCEME mode change 100644 => 100755 functions/__center.sh mode change 100644 => 100755 functions/__get_env.sh mode change 100644 => 100755 functions/__indent.sh mode change 100644 => 100755 functions/__is_stdin.sh mode change 100644 => 100755 functions/__menu.sh mode change 100644 => 100755 functions/__path_append.sh mode change 100644 => 100755 functions/__path_prepend.sh mode change 100644 => 100755 functions/__path_remove.sh mode change 100644 => 100755 functions/__short_ans.sh mode change 100644 => 100755 functions/__source_all.sh mode change 100644 => 100755 functions/__str_repeat.sh mode change 100644 => 100755 functions/__strlen.sh mode change 100644 => 100755 functions/__to_lower.sh mode change 100644 => 100755 functions/__to_upper.sh diff --git a/SOURCEME b/SOURCEME old mode 100644 new mode 100755 diff --git a/functions/__center.sh b/functions/__center.sh old mode 100644 new mode 100755 diff --git a/functions/__get_env.sh b/functions/__get_env.sh old mode 100644 new mode 100755 diff --git a/functions/__indent.sh b/functions/__indent.sh old mode 100644 new mode 100755 diff --git a/functions/__is_stdin.sh b/functions/__is_stdin.sh old mode 100644 new mode 100755 diff --git a/functions/__menu.sh b/functions/__menu.sh old mode 100644 new mode 100755 diff --git a/functions/__path_append.sh b/functions/__path_append.sh old mode 100644 new mode 100755 diff --git a/functions/__path_prepend.sh b/functions/__path_prepend.sh old mode 100644 new mode 100755 diff --git a/functions/__path_remove.sh b/functions/__path_remove.sh old mode 100644 new mode 100755 diff --git a/functions/__short_ans.sh b/functions/__short_ans.sh old mode 100644 new mode 100755 diff --git a/functions/__source_all.sh b/functions/__source_all.sh old mode 100644 new mode 100755 diff --git a/functions/__str_repeat.sh b/functions/__str_repeat.sh old mode 100644 new mode 100755 diff --git a/functions/__strlen.sh b/functions/__strlen.sh old mode 100644 new mode 100755 diff --git a/functions/__to_lower.sh b/functions/__to_lower.sh old mode 100644 new mode 100755 diff --git a/functions/__to_upper.sh b/functions/__to_upper.sh old mode 100644 new mode 100755 From 6aaec3bac1b69d576103c612ea2a8210ae19ec3b Mon Sep 17 00:00:00 2001 From: Chris Corwin Date: Tue, 14 Jun 2016 10:09:29 -0400 Subject: [PATCH 2/4] Updates README with links to the files. --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 65a7504..094844a 100644 --- a/README.md +++ b/README.md @@ -9,30 +9,30 @@ Usage Below is a list of usages for the various available functions included in this library. The definitions are straight from the documentation in the files themselves. See each file's source for more details. - __center - __debug [ [ [...]]] - __elog [ [ [...]]] - __error [ [ [...]]] - __get_env [-e] - __in_args "$@" - __in_array - __indent [--char=] - __is_stdin - __log [-n] [--file=] [ [ [...]]] - __menu [--prompt=] [] ... ] [-k [] ...] - __path_append [] - __path_prepend [] - __path_remove [] - __path_to_windows - __short_ans - __show_tree [] - __source_all [-vx] [] - __str_repeat [-n] - __strip_color_codes [ [ [...]]] - __strlen - __to_lower - __to_upper - __type_exists [-p | -a | -b | -f | -k] - __type_exists [-p | -a | -b | -f | -k] - __wait_on [--max-time=] [] - __yes_no --default= + [__center](functions/__center.sh) + [__debug](functions/__debug.sh) [ [ [...]]] + [__elog](functions/__elog.sh) [ [ [...]]] + [__error](functions/__error.sh) [ [ [...]]] + [__get_env](functions/__get_env.sh) [-e] + [__in_args](functions/__in_args.sh) "$@" + [__in_array](functions/__in_array.sh) + [__indent](functions/__indent.sh) [--char=] + [__is_stdin](functions/__is_stdin.sh) + [__log](functions/__log.sh) [-n] [--file=] [ [ [...]]] + [__menu](functions/__menu.sh) [--prompt=] [] ... ] [-k [] ...] + [__path_append](functions/__path_append.sh) [] + [__path_prepend](functions/__path_prepend.sh) [] + [__path_remove](functions/__path_remove.sh) [] + [__path_to_windows](functions/__path_to_windows.sh) + [__short_ans](functions/__short_ans.sh) + [__show_tree](functions/__show_tree.sh) [] + [__source_all](functions/__source_all.sh) [-vx] [] + [__str_repeat](functions/__str_repeat.sh) [-n] + [__strip_color_codes](functions/__strip_color_codes.sh) [ [ [...]]] + [__strlen](functions/__strlen.sh) + [__to_lower](functions/__to_lower.sh) + [__to_upper](functions/__to_upper.sh) + [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] + [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] + [__wait_on](functions/__wait_on.sh) [--max-time=] [] + [__yes_no](functions/__yes_no.sh) --default= From 07f631e97939c62b282de106de68e87afaf51b0a Mon Sep 17 00:00:00 2001 From: Chris Corwin Date: Tue, 14 Jun 2016 10:10:26 -0400 Subject: [PATCH 3/4] Updates README with links to the files. --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 094844a..e3ed3ae 100644 --- a/README.md +++ b/README.md @@ -9,30 +9,30 @@ Usage Below is a list of usages for the various available functions included in this library. The definitions are straight from the documentation in the files themselves. See each file's source for more details. - [__center](functions/__center.sh) - [__debug](functions/__debug.sh) [ [ [...]]] - [__elog](functions/__elog.sh) [ [ [...]]] - [__error](functions/__error.sh) [ [ [...]]] - [__get_env](functions/__get_env.sh) [-e] - [__in_args](functions/__in_args.sh) "$@" - [__in_array](functions/__in_array.sh) - [__indent](functions/__indent.sh) [--char=] - [__is_stdin](functions/__is_stdin.sh) - [__log](functions/__log.sh) [-n] [--file=] [ [ [...]]] - [__menu](functions/__menu.sh) [--prompt=] [] ... ] [-k [] ...] - [__path_append](functions/__path_append.sh) [] - [__path_prepend](functions/__path_prepend.sh) [] - [__path_remove](functions/__path_remove.sh) [] - [__path_to_windows](functions/__path_to_windows.sh) - [__short_ans](functions/__short_ans.sh) - [__show_tree](functions/__show_tree.sh) [] - [__source_all](functions/__source_all.sh) [-vx] [] - [__str_repeat](functions/__str_repeat.sh) [-n] - [__strip_color_codes](functions/__strip_color_codes.sh) [ [ [...]]] - [__strlen](functions/__strlen.sh) - [__to_lower](functions/__to_lower.sh) - [__to_upper](functions/__to_upper.sh) - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] - [__wait_on](functions/__wait_on.sh) [--max-time=] [] - [__yes_no](functions/__yes_no.sh) --default= + - [__center](functions/__center.sh) + - [__debug](functions/__debug.sh) [ [ [...]]] + - [__elog](functions/__elog.sh) [ [ [...]]] + - [__error](functions/__error.sh) [ [ [...]]] + - [__get_env](functions/__get_env.sh) [-e] + - [__in_args](functions/__in_args.sh) "$@" + - [__in_array](functions/__in_array.sh) + - [__indent](functions/__indent.sh) [--char=] + - [__is_stdin](functions/__is_stdin.sh) + - [__log](functions/__log.sh) [-n] [--file=] [ [ [...]]] + - [__menu](functions/__menu.sh) [--prompt=] [] ... ] [-k [] ...] + - [__path_append](functions/__path_append.sh) [] + - [__path_prepend](functions/__path_prepend.sh) [] + - [__path_remove](functions/__path_remove.sh) [] + - [__path_to_windows](functions/__path_to_windows.sh) + - [__short_ans](functions/__short_ans.sh) + - [__show_tree](functions/__show_tree.sh) [] + - [__source_all](functions/__source_all.sh) [-vx] [] + - [__str_repeat](functions/__str_repeat.sh) [-n] + - [__strip_color_codes](functions/__strip_color_codes.sh) [ [ [...]]] + - [__strlen](functions/__strlen.sh) + - [__to_lower](functions/__to_lower.sh) + - [__to_upper](functions/__to_upper.sh) + - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] + - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] + - [__wait_on](functions/__wait_on.sh) [--max-time=] [] + - [__yes_no](functions/__yes_no.sh) --default= From 92b0f650bb725b0508707a9539fa20ec760839ba Mon Sep 17 00:00:00 2001 From: Chris Corwin Date: Tue, 14 Jun 2016 10:11:06 -0400 Subject: [PATCH 4/4] Updates README with links to the files. --- README.md | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index e3ed3ae..bac6376 100644 --- a/README.md +++ b/README.md @@ -9,30 +9,30 @@ Usage Below is a list of usages for the various available functions included in this library. The definitions are straight from the documentation in the files themselves. See each file's source for more details. - - [__center](functions/__center.sh) - - [__debug](functions/__debug.sh) [ [ [...]]] - - [__elog](functions/__elog.sh) [ [ [...]]] - - [__error](functions/__error.sh) [ [ [...]]] - - [__get_env](functions/__get_env.sh) [-e] - - [__in_args](functions/__in_args.sh) "$@" - - [__in_array](functions/__in_array.sh) - - [__indent](functions/__indent.sh) [--char=] + - [__center](functions/__center.sh) ` ` + - [__debug](functions/__debug.sh) `[ [ [...]]]` + - [__elog](functions/__elog.sh) `[ [ [...]]]` + - [__error](functions/__error.sh) `[ [ [...]]]` + - [__get_env](functions/__get_env.sh) `[-e]` + - [__in_args](functions/__in_args.sh) ` "$@"` + - [__in_array](functions/__in_array.sh) ` ` + - [__indent](functions/__indent.sh) `[--char=] ` - [__is_stdin](functions/__is_stdin.sh) - - [__log](functions/__log.sh) [-n] [--file=] [ [ [...]]] - - [__menu](functions/__menu.sh) [--prompt=] [] ... ] [-k [] ...] - - [__path_append](functions/__path_append.sh) [] - - [__path_prepend](functions/__path_prepend.sh) [] - - [__path_remove](functions/__path_remove.sh) [] - - [__path_to_windows](functions/__path_to_windows.sh) - - [__short_ans](functions/__short_ans.sh) - - [__show_tree](functions/__show_tree.sh) [] - - [__source_all](functions/__source_all.sh) [-vx] [] - - [__str_repeat](functions/__str_repeat.sh) [-n] - - [__strip_color_codes](functions/__strip_color_codes.sh) [ [ [...]]] - - [__strlen](functions/__strlen.sh) - - [__to_lower](functions/__to_lower.sh) - - [__to_upper](functions/__to_upper.sh) - - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] - - [__type_exists](functions/__type_exists.sh) [-p | -a | -b | -f | -k] - - [__wait_on](functions/__wait_on.sh) [--max-time=] [] - - [__yes_no](functions/__yes_no.sh) --default= + - [__log](functions/__log.sh) `[-n] [--file=] [ [ [...]]]` + - [__menu](functions/__menu.sh) `[--prompt=] [] ... ] [-k [] ...]` + - [__path_append](functions/__path_append.sh) ` []` + - [__path_prepend](functions/__path_prepend.sh) ` []` + - [__path_remove](functions/__path_remove.sh) ` []` + - [__path_to_windows](functions/__path_to_windows.sh) `` + - [__short_ans](functions/__short_ans.sh) `` + - [__show_tree](functions/__show_tree.sh) `[]` + - [__source_all](functions/__source_all.sh) `[-vx] []` + - [__str_repeat](functions/__str_repeat.sh) `[-n] ` + - [__strip_color_codes](functions/__strip_color_codes.sh) `[ [ [...]]]` + - [__strlen](functions/__strlen.sh) `` + - [__to_lower](functions/__to_lower.sh) `` + - [__to_upper](functions/__to_upper.sh) `` + - [__type_exists](functions/__type_exists.sh) `[-p | -a | -b | -f | -k] ` + - [__type_exists](functions/__type_exists.sh) `[-p | -a | -b | -f | -k] ` + - [__wait_on](functions/__wait_on.sh) `[--max-time=] []` + - [__yes_no](functions/__yes_no.sh) `--default= `