playground/jaml.clj
2022-10-25 20:37:00 +02:00

10 lines
325 B
Clojure
Executable file

#!/usr/bin/env bb
(ns yaml
(:require [cheshire.core :as json]
[clj-yaml.core :as yaml]
[clojure.java.io]))
(print (yaml/generate-string
(json/parse-stream (clojure.java.io/reader
(first *command-line-args*)))
:dumper-options {:flow-style :block}))