├── .gitignore ├── GPLv2.txt ├── GPLv3.txt ├── LICENSE ├── Makefile ├── README.md ├── README ├── EN │ └── README ├── FR │ └── README └── TR │ └── README ├── commands ├── beep.c ├── cat.c ├── cd.c ├── clear.c ├── cp.c ├── date.c ├── echo.c ├── help.c ├── ls.c ├── mkdir.c ├── mv.c ├── pwd.c ├── rm.c ├── rmdir.c ├── sh.c └── time.c ├── config.h ├── lang ├── en.h ├── fr.h └── tr.h ├── main.c └── minibox.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/.gitignore -------------------------------------------------------------------------------- /GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/GPLv2.txt -------------------------------------------------------------------------------- /GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/GPLv3.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/README.md -------------------------------------------------------------------------------- /README/EN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/README/EN/README -------------------------------------------------------------------------------- /README/FR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/README/FR/README -------------------------------------------------------------------------------- /README/TR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/README/TR/README -------------------------------------------------------------------------------- /commands/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/beep.c -------------------------------------------------------------------------------- /commands/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/cat.c -------------------------------------------------------------------------------- /commands/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/cd.c -------------------------------------------------------------------------------- /commands/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/clear.c -------------------------------------------------------------------------------- /commands/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/cp.c -------------------------------------------------------------------------------- /commands/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/date.c -------------------------------------------------------------------------------- /commands/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/echo.c -------------------------------------------------------------------------------- /commands/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/help.c -------------------------------------------------------------------------------- /commands/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/ls.c -------------------------------------------------------------------------------- /commands/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/mkdir.c -------------------------------------------------------------------------------- /commands/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/mv.c -------------------------------------------------------------------------------- /commands/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/pwd.c -------------------------------------------------------------------------------- /commands/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/rm.c -------------------------------------------------------------------------------- /commands/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/rmdir.c -------------------------------------------------------------------------------- /commands/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/sh.c -------------------------------------------------------------------------------- /commands/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/commands/time.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/config.h -------------------------------------------------------------------------------- /lang/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/lang/en.h -------------------------------------------------------------------------------- /lang/fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/lang/fr.h -------------------------------------------------------------------------------- /lang/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/lang/tr.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/main.c -------------------------------------------------------------------------------- /minibox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercanersoy/Minibox/HEAD/minibox.h --------------------------------------------------------------------------------