├── .gitignore ├── LICENSE ├── README.md ├── bin ├── cat.ml ├── dune ├── echo.ml ├── false.ml ├── head.ml ├── pwd.ml ├── sleep.ml ├── true.ml ├── whoami.ml └── yes.ml ├── dune-project ├── lib ├── customIO.ml └── dune ├── ocaml_coreutils.opam └── test ├── dune └── ocaml_coreutils.ml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/README.md -------------------------------------------------------------------------------- /bin/cat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/cat.ml -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/dune -------------------------------------------------------------------------------- /bin/echo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/echo.ml -------------------------------------------------------------------------------- /bin/false.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/false.ml -------------------------------------------------------------------------------- /bin/head.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/head.ml -------------------------------------------------------------------------------- /bin/pwd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/pwd.ml -------------------------------------------------------------------------------- /bin/sleep.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/sleep.ml -------------------------------------------------------------------------------- /bin/true.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/true.ml -------------------------------------------------------------------------------- /bin/whoami.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/whoami.ml -------------------------------------------------------------------------------- /bin/yes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/bin/yes.ml -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/dune-project -------------------------------------------------------------------------------- /lib/customIO.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/lib/customIO.ml -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- 1 | (library 2 | (name lib)) -------------------------------------------------------------------------------- /ocaml_coreutils.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namanmansukhani/ocaml-coreutils/HEAD/ocaml_coreutils.opam -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- 1 | (test 2 | (name ocaml_coreutils)) 3 | -------------------------------------------------------------------------------- /test/ocaml_coreutils.ml: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------