mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 06:33:38 +01:00
32 lines
535 B
OCaml
32 lines
535 B
OCaml
open Core.Std
|
|
|
|
|
|
let run ezfio_filename =
|
|
let qmcchem_info =
|
|
Lazy.force Qmcchem_config.qmcchem_info
|
|
in
|
|
let prog, args =
|
|
qmcchem_info,
|
|
[ qmcchem_info ; ezfio_filename ]
|
|
in
|
|
ignore @@
|
|
Unix.exec ~prog ~args ()
|
|
|
|
|
|
let spec =
|
|
let open Command.Spec in
|
|
empty
|
|
+> anon ("ezfio_file" %: string)
|
|
|
|
let command =
|
|
Command.basic
|
|
~summary: "Display info on an EZFIO database"
|
|
~readme:(fun () ->
|
|
"
|
|
Display info on an EZFIO database
|
|
")
|
|
spec
|
|
(fun ezfio_file () -> run ezfio_file )
|
|
|
|
|