Liking cljdoc? Tell your friends :D
Clojure only.

pallet.crate.etc-default

Generation and installation of /etc/default-style files.

Generation and installation of /etc/default-style files.
raw docstring

writeclj

(write filename & key-value-pairs)

Writes a KEY=value file to /etc/default/~{filename}, or ~{filename} if filename starts with a /. Note that all values are quoted, and quotes in values are escaped, but otherwise, values are written literally.

e.g. (write "tomcat6" :JAVA_OPTS "-Xmx1024m" "JSP_COMPILER" "javac")

Writes a KEY=value file to /etc/default/~{filename}, or ~{filename} if
filename starts with a /.  Note that all values are quoted, and quotes in
values are escaped, but otherwise, values are written literally.

e.g. (write "tomcat6"
       :JAVA_OPTS "-Xmx1024m"
       "JSP_COMPILER" "javac")
sourceraw docstring

write-optsclj

(write-opts filename key-values options)

Writes a KEY=value file to /etc/default/~{filename}, or ~{filename} if filename starts with a /. Note that all values are quoted, and quotes in values are escaped, but otherwise, values are written literally.

e.g. (write_opts "tomcat6" {:JAVA_OPTS "-Xmx1024m" "JSP_COMPILER" "javac"} {:overwrite-changes true})

Writes a KEY=value file to /etc/default/~{filename}, or ~{filename} if
filename starts with a /.  Note that all values are quoted, and quotes in
values are escaped, but otherwise, values are written literally.

e.g. (write_opts "tomcat6"
       {:JAVA_OPTS "-Xmx1024m"
        "JSP_COMPILER" "javac"}
       {:overwrite-changes true})
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close