├── LICENSE ├── Makefile ├── README.mkd ├── bin ├── bashful ├── bashful-doc ├── bashful-execute ├── bashful-files ├── bashful-input ├── bashful-messages ├── bashful-modes ├── bashful-profile ├── bashful-terminfo ├── bashful-utils └── shdoc ├── package.json └── share ├── man └── man1 │ ├── bashful.1 │ └── shdoc.1 └── zsh └── functions └── _shdoc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/Makefile -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/README.mkd -------------------------------------------------------------------------------- /bin/bashful: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful -------------------------------------------------------------------------------- /bin/bashful-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-doc -------------------------------------------------------------------------------- /bin/bashful-execute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-execute -------------------------------------------------------------------------------- /bin/bashful-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-files -------------------------------------------------------------------------------- /bin/bashful-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-input -------------------------------------------------------------------------------- /bin/bashful-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-messages -------------------------------------------------------------------------------- /bin/bashful-modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-modes -------------------------------------------------------------------------------- /bin/bashful-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-profile -------------------------------------------------------------------------------- /bin/bashful-terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-terminfo -------------------------------------------------------------------------------- /bin/bashful-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/bashful-utils -------------------------------------------------------------------------------- /bin/shdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/bin/shdoc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/package.json -------------------------------------------------------------------------------- /share/man/man1/bashful.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/share/man/man1/bashful.1 -------------------------------------------------------------------------------- /share/man/man1/shdoc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/share/man/man1/shdoc.1 -------------------------------------------------------------------------------- /share/zsh/functions/_shdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcantrell/bashful/HEAD/share/zsh/functions/_shdoc --------------------------------------------------------------------------------