├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── configure ├── configure.in ├── install-sh ├── main.c ├── missing ├── mkinstalldirs ├── tinysh.c └── tinysh.h /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Michel Gutierrez 3 | 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | 2 | it's all new 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/README -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/configure.in -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/install-sh -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/main.c -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /tinysh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/tinysh.c -------------------------------------------------------------------------------- /tinysh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjlano/tinysh/HEAD/tinysh.h --------------------------------------------------------------------------------