├── .github └── FUNDING.yml ├── LICENSE.md ├── Makefile ├── README.md ├── astree.c ├── astree.h ├── command.c ├── command.h ├── execute.c ├── execute.h ├── lexer.c ├── lexer.h ├── parser.c ├── parser.h └── shell.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/README.md -------------------------------------------------------------------------------- /astree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/astree.c -------------------------------------------------------------------------------- /astree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/astree.h -------------------------------------------------------------------------------- /command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/command.c -------------------------------------------------------------------------------- /command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/command.h -------------------------------------------------------------------------------- /execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/execute.c -------------------------------------------------------------------------------- /execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/execute.h -------------------------------------------------------------------------------- /lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/lexer.c -------------------------------------------------------------------------------- /lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/lexer.h -------------------------------------------------------------------------------- /parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/parser.c -------------------------------------------------------------------------------- /parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/parser.h -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swoorup/mysh/HEAD/shell.c --------------------------------------------------------------------------------