├── .asciidoc-pdf-theme.yml ├── .asciidoctor.css ├── .auto-update-disabled ├── .bash_path_resolver ├── .bash_profile ├── .bash_restore_path ├── .bash_safe_source ├── .db.active.sql ├── .editorconfig ├── .envrc ├── .envrc.debug.off ├── .envrc.debug.on ├── .fonts.tar.gz ├── .github ├── FUNDING.yml └── workflows │ ├── install.yml │ ├── lint.yml │ ├── tests.yml │ └── zsh.yml ├── .gitignore ├── .init.sh ├── .shellcheckrc ├── .version ├── .vscode └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Makefile ├── README.adoc ├── README.pdf ├── bin ├── .db ├── .dev-setup ├── .downloader ├── .flatten-tree ├── .mysql-ramdisk ├── .pdf-reduce ├── adoc2pdf ├── ascii2utf8 ├── badge ├── bashmatic ├── bashmatic-install ├── bootstrap ├── db ├── dbtop ├── dev-setup ├── dock ├── downloader ├── flatten-tree ├── install-direnv ├── install-grc ├── install-psqlrc ├── install-ruby ├── install-ruby-interactive ├── is-site-up ├── linux-install ├── mysql-ramdisk ├── pdf-reduce ├── print-colors ├── puma-ctl ├── regen-changelog ├── regen-index-docs ├── regen-usage-docs ├── ruby-benchmark ├── ruby-check ├── ruby-install ├── scheck ├── shdoc ├── specs ├── tablet ├── upgrade-copyright-year ├── upgrade-shell └── version-detector ├── conf ├── .psqlrc ├── .psqlrc-macros ├── .zshrc ├── databases-ci.yml ├── databases.yml └── grc │ ├── .grc.bashrc │ ├── .grcat │ ├── .my.cnf │ ├── .my.cnf-no-color │ ├── conf.foreman │ └── conf.yaml ├── doc ├── CHANGELOG-graphite.md ├── CHANGELOG.md ├── FUNCTIONS.adoc ├── FUNCTIONS.pdf ├── LICENSE.adoc ├── SHDOC.md ├── USAGE.md ├── USAGE.pdf ├── WARRANTY └── img │ ├── bashmatic-example.png │ ├── bashmatic-init.png │ ├── bashmatic-install.png │ ├── bashmatic-tablet.png │ ├── bashmatic.png │ ├── db-commands.png │ ├── db-connections.png │ ├── db-examples.png │ ├── db-pga.png │ ├── db.png │ ├── dbtop.png │ ├── dev-setup-completed.png │ ├── dev-setup.png │ ├── docker-bash.png │ ├── k8installer.png │ ├── ruby-api-docs.svg │ ├── ruby-docs-icon.png │ ├── specs-parallel.png │ ├── specs.png │ └── video-squeeze.png ├── examples ├── k8s-installer.sh ├── load-bashmatic └── ui-showcase.sh ├── exe ├── process-list └── process-watch ├── experimental ├── lib │ └── cache.sh └── test │ ├── cache_test.bats │ └── test_helper.bash ├── init ├── init-helpers.sh ├── init.sh ├── lib ├── .audio.sh ├── 7z.sh ├── array.sh ├── asciidoc.sh ├── audio.sh ├── aws.sh ├── bashit.sh ├── bashmatic.sh ├── brew.sh ├── caller.sh ├── color.sh ├── config.sh ├── datadog.sh ├── db.sh ├── db_cli.sh ├── db_rails.sh ├── db_top.sh ├── deploy.sh ├── dir.sh ├── docker.sh ├── dropbox.sh ├── file-helpers.sh ├── file.sh ├── files-normalize.sh ├── flatten.sh ├── ftrace.sh ├── gem.sh ├── git.sh ├── github.sh ├── gpg.sh ├── is.sh ├── jemalloc.sh ├── json.sh ├── maths.sh ├── memory.sh ├── menus.sh ├── net.sh ├── nvm.sh ├── openssl.sh ├── osx.sh ├── output-admonitions.sh ├── output-boxes.sh ├── output-repeat-char.sh ├── output-utils.sh ├── output.sh ├── package.sh ├── path.sh ├── pdf.sh ├── pg.sh ├── pids.sh ├── pipe.sh ├── progress-bar.sh ├── repositories.sh ├── ruby.sh ├── run.sh ├── runtime-config.sh ├── runtime.sh ├── sedx.sh ├── serial.sh ├── set.sh ├── shasum.sh ├── shdoc.sh ├── shell-set.sh ├── simple-prints.sh ├── ssh.sh ├── subshell.sh ├── sym.sh ├── text.sh ├── time.sh ├── trap.sh ├── url.sh ├── usage.sh ├── user.sh ├── util.sh ├── video.sh ├── vim.sh ├── yaml.sh ├── yarn.sh └── zsh.sh ├── platform └── os.bash ├── ruby ├── Gemfile ├── Gemfile.lock └── topdf └── test ├── Gemfile ├── Gemfile.lock ├── array_test.bats ├── color_test.bats ├── config_test.bats ├── darwin └── sedx_test.bats ├── db_test.bats ├── dir_test.bats ├── file_test.bats ├── fixtures ├── .pairs ├── BadMakefile ├── Gemfile ├── Gemfile.lock ├── a.sh ├── b.sh ├── checksums │ ├── comedy_errors_1.adoc │ └── comedy_errors_2.md ├── config.json ├── config.yaml └── script-with-comments.sh ├── gem_test.bats ├── git_test.bats ├── helpers ├── test-lib.sh ├── test-source.sh └── test-subshell.sh ├── is_test.bats ├── linux └── .git-keep ├── maths_test.bats ├── memory_test.bats ├── output_test.bats ├── path_test.bats ├── pipe_test.bats ├── runtime-config_test.bats ├── runtime_test.bats ├── sedx_test.bats ├── shasum_test.bats ├── shellset_test.bats ├── subshell_test.bats ├── test_helper.bash ├── time_test.bats ├── url_test.bats ├── user_test.bats └── util_test.bats /.asciidoc-pdf-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.asciidoc-pdf-theme.yml -------------------------------------------------------------------------------- /.asciidoctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.asciidoctor.css -------------------------------------------------------------------------------- /.auto-update-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.auto-update-disabled -------------------------------------------------------------------------------- /.bash_path_resolver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.bash_path_resolver -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bash_restore_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.bash_restore_path -------------------------------------------------------------------------------- /.bash_safe_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.bash_safe_source -------------------------------------------------------------------------------- /.db.active.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.db.active.sql -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.envrc -------------------------------------------------------------------------------- /.envrc.debug.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.envrc.debug.off -------------------------------------------------------------------------------- /.envrc.debug.on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.envrc.debug.on -------------------------------------------------------------------------------- /.fonts.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.fonts.tar.gz -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/zsh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.github/workflows/zsh.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.gitignore -------------------------------------------------------------------------------- /.init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.init.sh -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 3.5.1 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/README.adoc -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/README.pdf -------------------------------------------------------------------------------- /bin/.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.db -------------------------------------------------------------------------------- /bin/.dev-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.dev-setup -------------------------------------------------------------------------------- /bin/.downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.downloader -------------------------------------------------------------------------------- /bin/.flatten-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.flatten-tree -------------------------------------------------------------------------------- /bin/.mysql-ramdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.mysql-ramdisk -------------------------------------------------------------------------------- /bin/.pdf-reduce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/.pdf-reduce -------------------------------------------------------------------------------- /bin/adoc2pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/adoc2pdf -------------------------------------------------------------------------------- /bin/ascii2utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/ascii2utf8 -------------------------------------------------------------------------------- /bin/badge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/badge -------------------------------------------------------------------------------- /bin/bashmatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/bashmatic -------------------------------------------------------------------------------- /bin/bashmatic-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/bashmatic-install -------------------------------------------------------------------------------- /bin/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/bootstrap -------------------------------------------------------------------------------- /bin/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/db -------------------------------------------------------------------------------- /bin/dbtop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/dbtop -------------------------------------------------------------------------------- /bin/dev-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/dev-setup -------------------------------------------------------------------------------- /bin/dock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/dock -------------------------------------------------------------------------------- /bin/downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/downloader -------------------------------------------------------------------------------- /bin/flatten-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/flatten-tree -------------------------------------------------------------------------------- /bin/install-direnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/install-direnv -------------------------------------------------------------------------------- /bin/install-grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/install-grc -------------------------------------------------------------------------------- /bin/install-psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/install-psqlrc -------------------------------------------------------------------------------- /bin/install-ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/install-ruby -------------------------------------------------------------------------------- /bin/install-ruby-interactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/install-ruby-interactive -------------------------------------------------------------------------------- /bin/is-site-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/is-site-up -------------------------------------------------------------------------------- /bin/linux-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/linux-install -------------------------------------------------------------------------------- /bin/mysql-ramdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/mysql-ramdisk -------------------------------------------------------------------------------- /bin/pdf-reduce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/pdf-reduce -------------------------------------------------------------------------------- /bin/print-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/print-colors -------------------------------------------------------------------------------- /bin/puma-ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/puma-ctl -------------------------------------------------------------------------------- /bin/regen-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/regen-changelog -------------------------------------------------------------------------------- /bin/regen-index-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/regen-index-docs -------------------------------------------------------------------------------- /bin/regen-usage-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/regen-usage-docs -------------------------------------------------------------------------------- /bin/ruby-benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/ruby-benchmark -------------------------------------------------------------------------------- /bin/ruby-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/ruby-check -------------------------------------------------------------------------------- /bin/ruby-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/ruby-install -------------------------------------------------------------------------------- /bin/scheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/scheck -------------------------------------------------------------------------------- /bin/shdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/shdoc -------------------------------------------------------------------------------- /bin/specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/specs -------------------------------------------------------------------------------- /bin/tablet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/tablet -------------------------------------------------------------------------------- /bin/upgrade-copyright-year: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/upgrade-copyright-year -------------------------------------------------------------------------------- /bin/upgrade-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/upgrade-shell -------------------------------------------------------------------------------- /bin/version-detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/bin/version-detector -------------------------------------------------------------------------------- /conf/.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/.psqlrc -------------------------------------------------------------------------------- /conf/.psqlrc-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/.psqlrc-macros -------------------------------------------------------------------------------- /conf/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/.zshrc -------------------------------------------------------------------------------- /conf/databases-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/databases-ci.yml -------------------------------------------------------------------------------- /conf/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/databases.yml -------------------------------------------------------------------------------- /conf/grc/.grc.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/.grc.bashrc -------------------------------------------------------------------------------- /conf/grc/.grcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/.grcat -------------------------------------------------------------------------------- /conf/grc/.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/.my.cnf -------------------------------------------------------------------------------- /conf/grc/.my.cnf-no-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/.my.cnf-no-color -------------------------------------------------------------------------------- /conf/grc/conf.foreman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/conf.foreman -------------------------------------------------------------------------------- /conf/grc/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/conf/grc/conf.yaml -------------------------------------------------------------------------------- /doc/CHANGELOG-graphite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/CHANGELOG-graphite.md -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/FUNCTIONS.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/FUNCTIONS.adoc -------------------------------------------------------------------------------- /doc/FUNCTIONS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/FUNCTIONS.pdf -------------------------------------------------------------------------------- /doc/LICENSE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/LICENSE.adoc -------------------------------------------------------------------------------- /doc/SHDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/SHDOC.md -------------------------------------------------------------------------------- /doc/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/USAGE.md -------------------------------------------------------------------------------- /doc/USAGE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/USAGE.pdf -------------------------------------------------------------------------------- /doc/WARRANTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/WARRANTY -------------------------------------------------------------------------------- /doc/img/bashmatic-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/bashmatic-example.png -------------------------------------------------------------------------------- /doc/img/bashmatic-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/bashmatic-init.png -------------------------------------------------------------------------------- /doc/img/bashmatic-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/bashmatic-install.png -------------------------------------------------------------------------------- /doc/img/bashmatic-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/bashmatic-tablet.png -------------------------------------------------------------------------------- /doc/img/bashmatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/bashmatic.png -------------------------------------------------------------------------------- /doc/img/db-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/db-commands.png -------------------------------------------------------------------------------- /doc/img/db-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/db-connections.png -------------------------------------------------------------------------------- /doc/img/db-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/db-examples.png -------------------------------------------------------------------------------- /doc/img/db-pga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/db-pga.png -------------------------------------------------------------------------------- /doc/img/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/db.png -------------------------------------------------------------------------------- /doc/img/dbtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/dbtop.png -------------------------------------------------------------------------------- /doc/img/dev-setup-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/dev-setup-completed.png -------------------------------------------------------------------------------- /doc/img/dev-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/dev-setup.png -------------------------------------------------------------------------------- /doc/img/docker-bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/docker-bash.png -------------------------------------------------------------------------------- /doc/img/k8installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/k8installer.png -------------------------------------------------------------------------------- /doc/img/ruby-api-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/ruby-api-docs.svg -------------------------------------------------------------------------------- /doc/img/ruby-docs-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/ruby-docs-icon.png -------------------------------------------------------------------------------- /doc/img/specs-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/specs-parallel.png -------------------------------------------------------------------------------- /doc/img/specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/specs.png -------------------------------------------------------------------------------- /doc/img/video-squeeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/doc/img/video-squeeze.png -------------------------------------------------------------------------------- /examples/k8s-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/examples/k8s-installer.sh -------------------------------------------------------------------------------- /examples/load-bashmatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/examples/load-bashmatic -------------------------------------------------------------------------------- /examples/ui-showcase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/examples/ui-showcase.sh -------------------------------------------------------------------------------- /exe/process-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/exe/process-list -------------------------------------------------------------------------------- /exe/process-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/exe/process-watch -------------------------------------------------------------------------------- /experimental/lib/cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/experimental/lib/cache.sh -------------------------------------------------------------------------------- /experimental/test/cache_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/experimental/test/cache_test.bats -------------------------------------------------------------------------------- /experimental/test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/experimental/test/test_helper.bash -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- 1 | init.sh -------------------------------------------------------------------------------- /init-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/init-helpers.sh -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/init.sh -------------------------------------------------------------------------------- /lib/.audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/.audio.sh -------------------------------------------------------------------------------- /lib/7z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/7z.sh -------------------------------------------------------------------------------- /lib/array.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/array.sh -------------------------------------------------------------------------------- /lib/asciidoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/asciidoc.sh -------------------------------------------------------------------------------- /lib/audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/audio.sh -------------------------------------------------------------------------------- /lib/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/aws.sh -------------------------------------------------------------------------------- /lib/bashit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/bashit.sh -------------------------------------------------------------------------------- /lib/bashmatic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/bashmatic.sh -------------------------------------------------------------------------------- /lib/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/brew.sh -------------------------------------------------------------------------------- /lib/caller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/caller.sh -------------------------------------------------------------------------------- /lib/color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/color.sh -------------------------------------------------------------------------------- /lib/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/config.sh -------------------------------------------------------------------------------- /lib/datadog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/datadog.sh -------------------------------------------------------------------------------- /lib/db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/db.sh -------------------------------------------------------------------------------- /lib/db_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/db_cli.sh -------------------------------------------------------------------------------- /lib/db_rails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/db_rails.sh -------------------------------------------------------------------------------- /lib/db_top.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/db_top.sh -------------------------------------------------------------------------------- /lib/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/deploy.sh -------------------------------------------------------------------------------- /lib/dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/dir.sh -------------------------------------------------------------------------------- /lib/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/docker.sh -------------------------------------------------------------------------------- /lib/dropbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/dropbox.sh -------------------------------------------------------------------------------- /lib/file-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/file-helpers.sh -------------------------------------------------------------------------------- /lib/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/file.sh -------------------------------------------------------------------------------- /lib/files-normalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/files-normalize.sh -------------------------------------------------------------------------------- /lib/flatten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/flatten.sh -------------------------------------------------------------------------------- /lib/ftrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/ftrace.sh -------------------------------------------------------------------------------- /lib/gem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/gem.sh -------------------------------------------------------------------------------- /lib/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/git.sh -------------------------------------------------------------------------------- /lib/github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/github.sh -------------------------------------------------------------------------------- /lib/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/gpg.sh -------------------------------------------------------------------------------- /lib/is.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/is.sh -------------------------------------------------------------------------------- /lib/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/jemalloc.sh -------------------------------------------------------------------------------- /lib/json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/json.sh -------------------------------------------------------------------------------- /lib/maths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/maths.sh -------------------------------------------------------------------------------- /lib/memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/memory.sh -------------------------------------------------------------------------------- /lib/menus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/menus.sh -------------------------------------------------------------------------------- /lib/net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/net.sh -------------------------------------------------------------------------------- /lib/nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/nvm.sh -------------------------------------------------------------------------------- /lib/openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/openssl.sh -------------------------------------------------------------------------------- /lib/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/osx.sh -------------------------------------------------------------------------------- /lib/output-admonitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/output-admonitions.sh -------------------------------------------------------------------------------- /lib/output-boxes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/output-boxes.sh -------------------------------------------------------------------------------- /lib/output-repeat-char.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/output-repeat-char.sh -------------------------------------------------------------------------------- /lib/output-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/output-utils.sh -------------------------------------------------------------------------------- /lib/output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/output.sh -------------------------------------------------------------------------------- /lib/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/package.sh -------------------------------------------------------------------------------- /lib/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/path.sh -------------------------------------------------------------------------------- /lib/pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/pdf.sh -------------------------------------------------------------------------------- /lib/pg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/pg.sh -------------------------------------------------------------------------------- /lib/pids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/pids.sh -------------------------------------------------------------------------------- /lib/pipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/pipe.sh -------------------------------------------------------------------------------- /lib/progress-bar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/progress-bar.sh -------------------------------------------------------------------------------- /lib/repositories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/repositories.sh -------------------------------------------------------------------------------- /lib/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/ruby.sh -------------------------------------------------------------------------------- /lib/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/run.sh -------------------------------------------------------------------------------- /lib/runtime-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/runtime-config.sh -------------------------------------------------------------------------------- /lib/runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/runtime.sh -------------------------------------------------------------------------------- /lib/sedx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/sedx.sh -------------------------------------------------------------------------------- /lib/serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/serial.sh -------------------------------------------------------------------------------- /lib/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/set.sh -------------------------------------------------------------------------------- /lib/shasum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/shasum.sh -------------------------------------------------------------------------------- /lib/shdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/shdoc.sh -------------------------------------------------------------------------------- /lib/shell-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/shell-set.sh -------------------------------------------------------------------------------- /lib/simple-prints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/simple-prints.sh -------------------------------------------------------------------------------- /lib/ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/ssh.sh -------------------------------------------------------------------------------- /lib/subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/subshell.sh -------------------------------------------------------------------------------- /lib/sym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/sym.sh -------------------------------------------------------------------------------- /lib/text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/text.sh -------------------------------------------------------------------------------- /lib/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/time.sh -------------------------------------------------------------------------------- /lib/trap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/trap.sh -------------------------------------------------------------------------------- /lib/url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/url.sh -------------------------------------------------------------------------------- /lib/usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/usage.sh -------------------------------------------------------------------------------- /lib/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/user.sh -------------------------------------------------------------------------------- /lib/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/util.sh -------------------------------------------------------------------------------- /lib/video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/video.sh -------------------------------------------------------------------------------- /lib/vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/vim.sh -------------------------------------------------------------------------------- /lib/yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/yaml.sh -------------------------------------------------------------------------------- /lib/yarn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/yarn.sh -------------------------------------------------------------------------------- /lib/zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/lib/zsh.sh -------------------------------------------------------------------------------- /platform/os.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/platform/os.bash -------------------------------------------------------------------------------- /ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/ruby/Gemfile -------------------------------------------------------------------------------- /ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/ruby/Gemfile.lock -------------------------------------------------------------------------------- /ruby/topdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/ruby/topdf -------------------------------------------------------------------------------- /test/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/Gemfile -------------------------------------------------------------------------------- /test/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/Gemfile.lock -------------------------------------------------------------------------------- /test/array_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/array_test.bats -------------------------------------------------------------------------------- /test/color_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/color_test.bats -------------------------------------------------------------------------------- /test/config_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/config_test.bats -------------------------------------------------------------------------------- /test/darwin/sedx_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/darwin/sedx_test.bats -------------------------------------------------------------------------------- /test/db_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/db_test.bats -------------------------------------------------------------------------------- /test/dir_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/dir_test.bats -------------------------------------------------------------------------------- /test/file_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/file_test.bats -------------------------------------------------------------------------------- /test/fixtures/.pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/.pairs -------------------------------------------------------------------------------- /test/fixtures/BadMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/BadMakefile -------------------------------------------------------------------------------- /test/fixtures/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rails', '=8.0.2' 4 | -------------------------------------------------------------------------------- /test/fixtures/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/Gemfile.lock -------------------------------------------------------------------------------- /test/fixtures/a.sh: -------------------------------------------------------------------------------- 1 | export AAA=1 2 | -------------------------------------------------------------------------------- /test/fixtures/b.sh: -------------------------------------------------------------------------------- 1 | 2 | export BBB=1 3 | -------------------------------------------------------------------------------- /test/fixtures/checksums/comedy_errors_1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/checksums/comedy_errors_1.adoc -------------------------------------------------------------------------------- /test/fixtures/checksums/comedy_errors_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/checksums/comedy_errors_2.md -------------------------------------------------------------------------------- /test/fixtures/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/config.json -------------------------------------------------------------------------------- /test/fixtures/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/config.yaml -------------------------------------------------------------------------------- /test/fixtures/script-with-comments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/fixtures/script-with-comments.sh -------------------------------------------------------------------------------- /test/gem_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/gem_test.bats -------------------------------------------------------------------------------- /test/git_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/git_test.bats -------------------------------------------------------------------------------- /test/helpers/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/helpers/test-lib.sh -------------------------------------------------------------------------------- /test/helpers/test-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/helpers/test-source.sh -------------------------------------------------------------------------------- /test/helpers/test-subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/helpers/test-subshell.sh -------------------------------------------------------------------------------- /test/is_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/is_test.bats -------------------------------------------------------------------------------- /test/linux/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/maths_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/maths_test.bats -------------------------------------------------------------------------------- /test/memory_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/memory_test.bats -------------------------------------------------------------------------------- /test/output_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/output_test.bats -------------------------------------------------------------------------------- /test/path_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/path_test.bats -------------------------------------------------------------------------------- /test/pipe_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/pipe_test.bats -------------------------------------------------------------------------------- /test/runtime-config_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/runtime-config_test.bats -------------------------------------------------------------------------------- /test/runtime_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/runtime_test.bats -------------------------------------------------------------------------------- /test/sedx_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/sedx_test.bats -------------------------------------------------------------------------------- /test/shasum_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/shasum_test.bats -------------------------------------------------------------------------------- /test/shellset_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/shellset_test.bats -------------------------------------------------------------------------------- /test/subshell_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/subshell_test.bats -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/test_helper.bash -------------------------------------------------------------------------------- /test/time_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/time_test.bats -------------------------------------------------------------------------------- /test/url_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/url_test.bats -------------------------------------------------------------------------------- /test/user_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/user_test.bats -------------------------------------------------------------------------------- /test/util_test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kigster/bashmatic/HEAD/test/util_test.bats --------------------------------------------------------------------------------