From 81cece0dc62e1ba9d162ab12ae361b870d74568a Mon Sep 17 00:00:00 2001 From: ZoRo Date: Sat, 27 Jun 2020 18:02:17 +0100 Subject: oecho,omkdir,ormdir,omkfile --- ormdir/Makefile | 8 ++++++++ ormdir/ormdir.ml | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 ormdir/Makefile create mode 100644 ormdir/ormdir.ml (limited to 'ormdir') diff --git a/ormdir/Makefile b/ormdir/Makefile new file mode 100644 index 0000000..4ae0c5d --- /dev/null +++ b/ormdir/Makefile @@ -0,0 +1,8 @@ +make: + ocamlc unix.cma str.cma ormdir.ml -o ormdir + +static: + ocamlopt unix.cmxa -ccopt -static ormdir.ml -o ormdir + +clean: + rm -f *.cmi *.cmx *.o *.cmo \ No newline at end of file diff --git a/ormdir/ormdir.ml b/ormdir/ormdir.ml new file mode 100644 index 0000000..db3edc2 --- /dev/null +++ b/ormdir/ormdir.ml @@ -0,0 +1,12 @@ +open Arg +open Scanf +open Printf +open Unix + +let argnum = Array.length Sys.argv + +let _ = + if argnum >= 2 then + let _ = rmdir Sys.argv.(1) in () + else + Printf.printf "ERR only one argument\n" \ No newline at end of file -- cgit v1.2.3