10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 03:15:19 +02:00
qmcchem/ocaml/Qmcchem_info.ml
2019-07-21 07:37:44 +02:00

32 lines
568 B
OCaml

let run ezfio_filename =
Qputils.set_ezfio_filename ezfio_filename;
let qmcchem_info =
Lazy.force Qmcchem_config.qmcchem_info
in
let prog, argv =
qmcchem_info,
[| qmcchem_info ; ezfio_filename |]
in
ignore @@
Unix.exec prog argv
let spec =
let open Command.Spec in
empty
+> anon ("ezfio_file" %: string)
let command =
Command.basic_spec
~summary: "Display info on an EZFIO database"
~readme:(fun () ->
"
Display info on an EZFIO database
")
spec
(fun ezfio_file () -> run ezfio_file )