├── .travis.yml ├── LICENSE ├── README.md ├── bash-simple ├── bash-simple-plus ├── bash-subcommands ├── functions.bash ├── helpers.bash └── test ├── bash-simple-plus.bats ├── bash-simple.bats ├── bash-subcommands.bats ├── functions.bats ├── helpers.bats └── test_helper.bash /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bash-simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/bash-simple -------------------------------------------------------------------------------- /bash-simple-plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/bash-simple-plus -------------------------------------------------------------------------------- /bash-subcommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/bash-subcommands -------------------------------------------------------------------------------- /functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/functions.bash -------------------------------------------------------------------------------- /helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/helpers.bash -------------------------------------------------------------------------------- /test/bash-simple-plus.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/bash-simple-plus.bats -------------------------------------------------------------------------------- /test/bash-simple.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/bash-simple.bats -------------------------------------------------------------------------------- /test/bash-subcommands.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/bash-subcommands.bats -------------------------------------------------------------------------------- /test/functions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/functions.bats -------------------------------------------------------------------------------- /test/helpers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/helpers.bats -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bash-boilerplate/HEAD/test/test_helper.bash --------------------------------------------------------------------------------