├── .gitignore ├── CHANGELOG.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── bashkit.bash ├── core ├── cf.bash ├── color.bash ├── darwin.bash ├── errcode.bash ├── error.bash ├── logging.bash ├── trap.bash └── version.bash ├── doc ├── .gitignore ├── Makefile ├── images │ ├── bashkit_badge.svg │ ├── screenshot.png │ └── wuage_badge.svg ├── metadata.yaml ├── src │ ├── 01-intro.md │ ├── 02-definitions.md │ ├── 03-basics.md │ └── 04-man │ │ ├── 01-core │ │ ├── 00-bashkit │ │ │ └── load.1.md │ │ ├── 01-cf │ │ │ ├── catch.1.md │ │ │ ├── not.1.md │ │ │ ├── raise.1.md │ │ │ └── resume.1.md │ │ ├── 02-color │ │ │ ├── encode.1.md │ │ │ ├── is_enabled.1.md │ │ │ └── table.1.md │ │ ├── 03-errcode │ │ │ ├── breakpoint.1.md │ │ │ └── trap.1.md │ │ ├── 04-error │ │ │ ├── class.1.md │ │ │ ├── custom.1.md │ │ │ ├── list.1.md │ │ │ └── whatis.1.md │ │ ├── 05-logging │ │ │ ├── alert.1.md │ │ │ ├── crit.1.md │ │ │ ├── debug.1.md │ │ │ ├── error.1.md │ │ │ ├── fatal.1.md │ │ │ ├── info.1.md │ │ │ ├── level.1.md │ │ │ ├── note.1.md │ │ │ ├── panic.1.md │ │ │ ├── setlevel.1.md │ │ │ └── warn.1.md │ │ ├── 06-trap │ │ │ ├── callback.1.md │ │ │ └── cleanup.1.md │ │ └── 07-version │ │ │ ├── bashkit.1.md │ │ │ ├── state.1.md │ │ │ └── update.1.md │ │ └── 02-modules │ │ ├── 01-array │ │ ├── contains.1.md │ │ ├── inter.1.md │ │ ├── map.1.md │ │ ├── pick.1.md │ │ ├── pop.1.md │ │ ├── popi.1.md │ │ ├── push.1.md │ │ ├── reduce.1.md │ │ ├── reverse.1.md │ │ ├── rotate.1.md │ │ ├── shift.1.md │ │ ├── shuffle.1.md │ │ ├── sort.1.md │ │ ├── split.1.md │ │ ├── uniq.1.md │ │ ├── unshift.1.md │ │ └── zip.1.md │ │ ├── 02-check │ │ ├── cmd.1.md │ │ ├── dir.1.md │ │ └── vartype.1.md │ │ ├── 03-curl │ │ └── download.1.md │ │ ├── 04-extras │ │ ├── funlist.1.md │ │ ├── isint.1.md │ │ ├── join.1.md │ │ ├── now.1.md │ │ ├── progress.1.md │ │ ├── urldecode.1.md │ │ ├── urlencode.1.md │ │ └── usleep.1.md │ │ ├── 05-interactive │ │ └── yesno.1.md │ │ ├── 06-json │ │ ├── from_toml.1.md │ │ ├── from_yaml.1.md │ │ ├── into_array.1.md │ │ ├── into_dict.1.md │ │ ├── to_toml.1.md │ │ └── to_yaml.1.md │ │ ├── 07-patch │ │ ├── apply.1.md │ │ └── batch.1.md │ │ ├── 08-perms │ │ ├── gid.1.md │ │ ├── mode.1.md │ │ └── uid.1.md │ │ ├── 09-readlinkf │ │ └── readlinkf.1.md │ │ ├── 10-shopt │ │ ├── pop.1.md │ │ └── push.1.md │ │ ├── 11-string │ │ ├── lstrip.1.md │ │ ├── regex.1.md │ │ ├── rstrip.1.md │ │ ├── split.1.md │ │ ├── strip.1.md │ │ ├── stripall.1.md │ │ └── trim.1.md │ │ └── 12-semver │ │ ├── compare.1.md │ │ └── parse.1.md └── templates │ ├── html.html │ └── style.css ├── examples ├── download.bash ├── errlist.bash ├── hello.bash ├── isint.bash ├── leb128.bash ├── log.bash ├── mycheck.bash ├── oshcomp.bash └── sete.bash ├── modules ├── array.bash ├── check.bash ├── curl.bash ├── extras.bash ├── interactive.bash ├── json.bash ├── patch.bash ├── perms.bash ├── readlinkf.bash ├── semver.bash ├── shopt.bash └── string.bash └── test ├── bash ├── bash.bats └── bashand.bats ├── bashkit ├── bashkit.bats ├── core │ ├── cf │ │ ├── catch.bats │ │ ├── elif.bats │ │ ├── else.bats │ │ └── raise.bats │ ├── color │ │ ├── color.bats │ │ ├── encode.bats │ │ ├── is_enabled.bats │ │ └── table.bats │ ├── darwin │ │ ├── darwin.bats │ │ ├── date.bats │ │ ├── getent.bats │ │ └── ln.bats │ ├── errcode │ │ ├── errcode.bats │ │ ├── pitfalls.bats │ │ ├── trap.bats │ │ └── unhandled.bats │ ├── error │ │ ├── class.bats │ │ ├── custom.bats │ │ ├── error.bats │ │ ├── list.bats │ │ └── whatis.bats │ ├── logging │ │ ├── __report.bats │ │ ├── __xtrace.bats │ │ ├── alert.bats │ │ ├── crit.bats │ │ ├── debug.bats │ │ ├── error.bats │ │ ├── fatal.bats │ │ ├── from.bats │ │ ├── info.bats │ │ ├── logging.bats │ │ ├── note.bats │ │ ├── panic.bats │ │ ├── setlevel.bats │ │ └── warn.bats │ ├── trap │ │ ├── callback.bats │ │ ├── cleanup.bats │ │ └── trap.bats │ └── version │ │ ├── lookup.bats │ │ ├── semver.bats │ │ ├── state.bats │ │ ├── update.bats │ │ └── version.bats ├── help.bats ├── load.bats ├── main.bats └── modules │ ├── array │ ├── array.bats │ ├── contains.bats │ ├── inter.bats │ ├── map.bats │ ├── pick.bats │ ├── pop.bats │ ├── popi.bats │ ├── push.bats │ ├── reduce.bats │ ├── reverse.bats │ ├── rotate.bats │ ├── shift.bats │ ├── shuffle.bats │ ├── sort.bats │ ├── split.bats │ ├── uniq.bats │ ├── unshift.bats │ └── zip.bats │ ├── check │ ├── check.bats │ ├── cmd.bats │ ├── dir.bats │ └── vartype.bats │ ├── curl │ ├── curl.bats │ └── download.bats │ ├── extras │ ├── extras.bats │ ├── funlist.bats │ ├── isint.bats │ ├── join.bats │ ├── now.bats │ ├── progress.bats │ └── url.bats │ ├── interactive │ ├── __lc_messages.bats │ ├── interactive.bats │ └── yesno.bats │ ├── json │ ├── from_toml.bats │ ├── from_yaml.bats │ ├── helper.bash │ ├── into_array.bats │ ├── into_dict.bats │ ├── json.bats │ ├── to_toml.bats │ └── to_yaml.bats │ ├── patch │ ├── apply.bats │ ├── batch.bats │ └── patch.bats │ ├── perms │ ├── gid.bats │ ├── mode.bats │ ├── perms.bats │ └── uid.bats │ ├── readlinkf │ ├── helper.bash │ └── readlinkf.bats │ ├── semver │ ├── compare.bats │ ├── license.bats │ ├── parse.bats │ └── parse_get.bats │ ├── shopt │ ├── pushpop.bats │ └── shopt.bats │ └── string │ ├── lstrip.bats │ ├── regex.bats │ ├── rstrip.bats │ ├── split.bats │ ├── string.bats │ ├── strip.bats │ ├── stripall.bats │ └── trim.bats └── helper └── common-setup.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/README.md -------------------------------------------------------------------------------- /bashkit.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/bashkit.bash -------------------------------------------------------------------------------- /core/cf.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/cf.bash -------------------------------------------------------------------------------- /core/color.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/color.bash -------------------------------------------------------------------------------- /core/darwin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/darwin.bash -------------------------------------------------------------------------------- /core/errcode.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/errcode.bash -------------------------------------------------------------------------------- /core/error.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/error.bash -------------------------------------------------------------------------------- /core/logging.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/logging.bash -------------------------------------------------------------------------------- /core/trap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/trap.bash -------------------------------------------------------------------------------- /core/version.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/core/version.bash -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/images/bashkit_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/images/bashkit_badge.svg -------------------------------------------------------------------------------- /doc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/images/screenshot.png -------------------------------------------------------------------------------- /doc/images/wuage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/images/wuage_badge.svg -------------------------------------------------------------------------------- /doc/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/metadata.yaml -------------------------------------------------------------------------------- /doc/src/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/01-intro.md -------------------------------------------------------------------------------- /doc/src/02-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/02-definitions.md -------------------------------------------------------------------------------- /doc/src/03-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/03-basics.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/00-bashkit/load.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/00-bashkit/load.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/01-cf/catch.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/01-cf/catch.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/01-cf/not.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/01-cf/not.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/01-cf/raise.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/01-cf/raise.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/01-cf/resume.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/01-cf/resume.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/02-color/encode.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/02-color/encode.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/02-color/is_enabled.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/02-color/is_enabled.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/02-color/table.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/02-color/table.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/03-errcode/breakpoint.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/03-errcode/breakpoint.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/03-errcode/trap.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/03-errcode/trap.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/04-error/class.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/04-error/class.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/04-error/custom.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/04-error/custom.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/04-error/list.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/04-error/list.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/04-error/whatis.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/04-error/whatis.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/alert.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/alert.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/crit.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/crit.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/debug.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/debug.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/error.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/error.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/fatal.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/fatal.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/info.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/info.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/level.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/level.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/note.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/note.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/panic.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/panic.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/setlevel.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/setlevel.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/05-logging/warn.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/05-logging/warn.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/06-trap/callback.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/06-trap/callback.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/06-trap/cleanup.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/06-trap/cleanup.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/07-version/bashkit.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/07-version/bashkit.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/07-version/state.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/07-version/state.1.md -------------------------------------------------------------------------------- /doc/src/04-man/01-core/07-version/update.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/01-core/07-version/update.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/contains.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/contains.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/inter.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/inter.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/map.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/map.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/pick.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/pick.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/pop.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/pop.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/popi.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/popi.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/push.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/push.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/reduce.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/reduce.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/reverse.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/reverse.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/rotate.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/rotate.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/shift.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/shift.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/shuffle.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/shuffle.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/sort.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/sort.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/split.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/split.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/uniq.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/uniq.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/unshift.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/unshift.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/01-array/zip.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/01-array/zip.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/02-check/cmd.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/02-check/cmd.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/02-check/dir.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/02-check/dir.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/02-check/vartype.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/02-check/vartype.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/03-curl/download.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/03-curl/download.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/funlist.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/funlist.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/isint.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/isint.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/join.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/join.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/now.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/now.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/progress.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/progress.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/urldecode.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/urldecode.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/urlencode.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/urlencode.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/04-extras/usleep.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/04-extras/usleep.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/05-interactive/yesno.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/05-interactive/yesno.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/from_toml.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/from_toml.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/from_yaml.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/from_yaml.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/into_array.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/into_array.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/into_dict.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/into_dict.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/to_toml.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/to_toml.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/06-json/to_yaml.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/06-json/to_yaml.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/07-patch/apply.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/07-patch/apply.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/07-patch/batch.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/07-patch/batch.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/08-perms/gid.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/08-perms/gid.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/08-perms/mode.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/08-perms/mode.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/08-perms/uid.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/08-perms/uid.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/09-readlinkf/readlinkf.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/09-readlinkf/readlinkf.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/10-shopt/pop.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/10-shopt/pop.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/10-shopt/push.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/10-shopt/push.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/lstrip.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/lstrip.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/regex.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/regex.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/rstrip.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/rstrip.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/split.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/split.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/strip.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/strip.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/stripall.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/stripall.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/11-string/trim.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/11-string/trim.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/12-semver/compare.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/12-semver/compare.1.md -------------------------------------------------------------------------------- /doc/src/04-man/02-modules/12-semver/parse.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/src/04-man/02-modules/12-semver/parse.1.md -------------------------------------------------------------------------------- /doc/templates/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/templates/html.html -------------------------------------------------------------------------------- /doc/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/doc/templates/style.css -------------------------------------------------------------------------------- /examples/download.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/download.bash -------------------------------------------------------------------------------- /examples/errlist.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/errlist.bash -------------------------------------------------------------------------------- /examples/hello.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/hello.bash -------------------------------------------------------------------------------- /examples/isint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/isint.bash -------------------------------------------------------------------------------- /examples/leb128.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/leb128.bash -------------------------------------------------------------------------------- /examples/log.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/log.bash -------------------------------------------------------------------------------- /examples/mycheck.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/mycheck.bash -------------------------------------------------------------------------------- /examples/oshcomp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/oshcomp.bash -------------------------------------------------------------------------------- /examples/sete.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/examples/sete.bash -------------------------------------------------------------------------------- /modules/array.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/array.bash -------------------------------------------------------------------------------- /modules/check.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/check.bash -------------------------------------------------------------------------------- /modules/curl.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/curl.bash -------------------------------------------------------------------------------- /modules/extras.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/extras.bash -------------------------------------------------------------------------------- /modules/interactive.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/interactive.bash -------------------------------------------------------------------------------- /modules/json.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/json.bash -------------------------------------------------------------------------------- /modules/patch.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/patch.bash -------------------------------------------------------------------------------- /modules/perms.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/perms.bash -------------------------------------------------------------------------------- /modules/readlinkf.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/readlinkf.bash -------------------------------------------------------------------------------- /modules/semver.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/semver.bash -------------------------------------------------------------------------------- /modules/shopt.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/shopt.bash -------------------------------------------------------------------------------- /modules/string.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/modules/string.bash -------------------------------------------------------------------------------- /test/bash/bash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bash/bash.bats -------------------------------------------------------------------------------- /test/bash/bashand.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bash/bashand.bats -------------------------------------------------------------------------------- /test/bashkit/bashkit.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/bashkit.bats -------------------------------------------------------------------------------- /test/bashkit/core/cf/catch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/cf/catch.bats -------------------------------------------------------------------------------- /test/bashkit/core/cf/elif.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/cf/elif.bats -------------------------------------------------------------------------------- /test/bashkit/core/cf/else.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/cf/else.bats -------------------------------------------------------------------------------- /test/bashkit/core/cf/raise.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/cf/raise.bats -------------------------------------------------------------------------------- /test/bashkit/core/color/color.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/color/color.bats -------------------------------------------------------------------------------- /test/bashkit/core/color/encode.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/color/encode.bats -------------------------------------------------------------------------------- /test/bashkit/core/color/is_enabled.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/color/is_enabled.bats -------------------------------------------------------------------------------- /test/bashkit/core/color/table.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/color/table.bats -------------------------------------------------------------------------------- /test/bashkit/core/darwin/darwin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/darwin/darwin.bats -------------------------------------------------------------------------------- /test/bashkit/core/darwin/date.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/darwin/date.bats -------------------------------------------------------------------------------- /test/bashkit/core/darwin/getent.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/darwin/getent.bats -------------------------------------------------------------------------------- /test/bashkit/core/darwin/ln.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/darwin/ln.bats -------------------------------------------------------------------------------- /test/bashkit/core/errcode/errcode.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/errcode/errcode.bats -------------------------------------------------------------------------------- /test/bashkit/core/errcode/pitfalls.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/errcode/pitfalls.bats -------------------------------------------------------------------------------- /test/bashkit/core/errcode/trap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/errcode/trap.bats -------------------------------------------------------------------------------- /test/bashkit/core/errcode/unhandled.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/errcode/unhandled.bats -------------------------------------------------------------------------------- /test/bashkit/core/error/class.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/error/class.bats -------------------------------------------------------------------------------- /test/bashkit/core/error/custom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/error/custom.bats -------------------------------------------------------------------------------- /test/bashkit/core/error/error.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/error/error.bats -------------------------------------------------------------------------------- /test/bashkit/core/error/list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/error/list.bats -------------------------------------------------------------------------------- /test/bashkit/core/error/whatis.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/error/whatis.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/__report.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/__report.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/__xtrace.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/__xtrace.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/alert.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/alert.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/crit.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/crit.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/debug.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/debug.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/error.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/error.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/fatal.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/fatal.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/from.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/from.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/info.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/logging.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/logging.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/note.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/note.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/panic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/panic.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/setlevel.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/setlevel.bats -------------------------------------------------------------------------------- /test/bashkit/core/logging/warn.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/logging/warn.bats -------------------------------------------------------------------------------- /test/bashkit/core/trap/callback.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/trap/callback.bats -------------------------------------------------------------------------------- /test/bashkit/core/trap/cleanup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/trap/cleanup.bats -------------------------------------------------------------------------------- /test/bashkit/core/trap/trap.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/trap/trap.bats -------------------------------------------------------------------------------- /test/bashkit/core/version/lookup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/version/lookup.bats -------------------------------------------------------------------------------- /test/bashkit/core/version/semver.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/version/semver.bats -------------------------------------------------------------------------------- /test/bashkit/core/version/state.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/version/state.bats -------------------------------------------------------------------------------- /test/bashkit/core/version/update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/version/update.bats -------------------------------------------------------------------------------- /test/bashkit/core/version/version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/core/version/version.bats -------------------------------------------------------------------------------- /test/bashkit/help.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/help.bats -------------------------------------------------------------------------------- /test/bashkit/load.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/load.bats -------------------------------------------------------------------------------- /test/bashkit/main.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/main.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/array.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/array.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/contains.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/contains.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/inter.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/inter.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/map.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/map.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/pick.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/pick.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/pop.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/pop.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/popi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/popi.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/push.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/push.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/reduce.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/reduce.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/reverse.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/reverse.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/rotate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/rotate.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/shift.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/shift.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/shuffle.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/shuffle.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/sort.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/sort.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/split.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/split.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/uniq.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/uniq.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/unshift.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/unshift.bats -------------------------------------------------------------------------------- /test/bashkit/modules/array/zip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/array/zip.bats -------------------------------------------------------------------------------- /test/bashkit/modules/check/check.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/check/check.bats -------------------------------------------------------------------------------- /test/bashkit/modules/check/cmd.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/check/cmd.bats -------------------------------------------------------------------------------- /test/bashkit/modules/check/dir.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/check/dir.bats -------------------------------------------------------------------------------- /test/bashkit/modules/check/vartype.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/check/vartype.bats -------------------------------------------------------------------------------- /test/bashkit/modules/curl/curl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/curl/curl.bats -------------------------------------------------------------------------------- /test/bashkit/modules/curl/download.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/curl/download.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/extras.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/extras.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/funlist.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/funlist.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/isint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/isint.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/join.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/join.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/now.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/now.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/progress.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/progress.bats -------------------------------------------------------------------------------- /test/bashkit/modules/extras/url.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/extras/url.bats -------------------------------------------------------------------------------- /test/bashkit/modules/interactive/__lc_messages.bats: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/bashkit/modules/interactive/interactive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/interactive/interactive.bats -------------------------------------------------------------------------------- /test/bashkit/modules/interactive/yesno.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/interactive/yesno.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/from_toml.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/from_toml.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/from_yaml.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/from_yaml.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/helper.bash -------------------------------------------------------------------------------- /test/bashkit/modules/json/into_array.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/into_array.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/into_dict.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/into_dict.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/json.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/to_toml.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/to_toml.bats -------------------------------------------------------------------------------- /test/bashkit/modules/json/to_yaml.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/json/to_yaml.bats -------------------------------------------------------------------------------- /test/bashkit/modules/patch/apply.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/patch/apply.bats -------------------------------------------------------------------------------- /test/bashkit/modules/patch/batch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/patch/batch.bats -------------------------------------------------------------------------------- /test/bashkit/modules/patch/patch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/patch/patch.bats -------------------------------------------------------------------------------- /test/bashkit/modules/perms/gid.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/perms/gid.bats -------------------------------------------------------------------------------- /test/bashkit/modules/perms/mode.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/perms/mode.bats -------------------------------------------------------------------------------- /test/bashkit/modules/perms/perms.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/perms/perms.bats -------------------------------------------------------------------------------- /test/bashkit/modules/perms/uid.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/perms/uid.bats -------------------------------------------------------------------------------- /test/bashkit/modules/readlinkf/helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/readlinkf/helper.bash -------------------------------------------------------------------------------- /test/bashkit/modules/readlinkf/readlinkf.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/readlinkf/readlinkf.bats -------------------------------------------------------------------------------- /test/bashkit/modules/semver/compare.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/semver/compare.bats -------------------------------------------------------------------------------- /test/bashkit/modules/semver/license.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/semver/license.bats -------------------------------------------------------------------------------- /test/bashkit/modules/semver/parse.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/semver/parse.bats -------------------------------------------------------------------------------- /test/bashkit/modules/semver/parse_get.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/semver/parse_get.bats -------------------------------------------------------------------------------- /test/bashkit/modules/shopt/pushpop.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/shopt/pushpop.bats -------------------------------------------------------------------------------- /test/bashkit/modules/shopt/shopt.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/shopt/shopt.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/lstrip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/lstrip.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/regex.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/regex.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/rstrip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/rstrip.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/split.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/split.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/string.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/string.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/strip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/strip.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/stripall.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/stripall.bats -------------------------------------------------------------------------------- /test/bashkit/modules/string/trim.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/bashkit/modules/string/trim.bats -------------------------------------------------------------------------------- /test/helper/common-setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wuageorg/bashkit/HEAD/test/helper/common-setup.bash --------------------------------------------------------------------------------