├── .github └── workflows │ ├── shellcheck.yml │ └── tests.yml ├── .gitignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── format ├── man └── tmex.1 ├── package.json ├── simulator ├── test.bats └── tmex /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .notes 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.1 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/README.md -------------------------------------------------------------------------------- /format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/format -------------------------------------------------------------------------------- /man/tmex.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/man/tmex.1 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/package.json -------------------------------------------------------------------------------- /simulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/simulator -------------------------------------------------------------------------------- /test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/test.bats -------------------------------------------------------------------------------- /tmex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evnp/tmex/HEAD/tmex --------------------------------------------------------------------------------