├── .gitignore ├── LICENSE ├── README.md └── bash ├── JSON.sh ├── bashbot.sh ├── captionbot.sh ├── commands.sh └── count /.gitignore: -------------------------------------------------------------------------------- 1 | bash/token 2 | *~ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/README.md -------------------------------------------------------------------------------- /bash/JSON.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/bash/JSON.sh -------------------------------------------------------------------------------- /bash/bashbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/bash/bashbot.sh -------------------------------------------------------------------------------- /bash/captionbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/bash/captionbot.sh -------------------------------------------------------------------------------- /bash/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/bash/commands.sh -------------------------------------------------------------------------------- /bash/count: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danog/captionbot-clients/HEAD/bash/count --------------------------------------------------------------------------------