You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/api/cheatsheet.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2637,7 +2637,7 @@ <h2>IO</h2>
2637
2637
current value of *in*.
2638
2638
2639
2639
Reads data in the edn format (subset of Clojure data):
2640
-
http://edn-format.org
2640
+
https://github.com/edn-format/edn
2641
2641
2642
2642
opts is a map that can include the following keys:
2643
2643
:eof - value to return on end-of-file. When not supplied, eof throws an
@@ -2655,7 +2655,7 @@ <h2>IO</h2>
2655
2655
If no reader is provided, *in* will be used.
2656
2656
2657
2657
Reads data in the edn format (subset of Clojure data):
2658
-
http://edn-format.org
2658
+
https://github.com/edn-format/edn
2659
2659
2660
2660
clojure.tools.reader.edn/read doesn't depend on dynamic Vars, all
2661
2661
configuration
@@ -2683,7 +2683,7 @@ <h2>IO</h2>
2683
2683
current value of *in*.
2684
2684
2685
2685
Reads data in the edn format (subset of Clojure data):
2686
-
http://edn-format.org
2686
+
https://github.com/edn-format/edn
2687
2687
2688
2688
opts is a map that can include the following keys:
2689
2689
:eof - value to return on end-of-file. When not supplied, eof throws an
@@ -2701,7 +2701,7 @@ <h2>IO</h2>
2701
2701
If no reader is provided, *in* will be used.
2702
2702
2703
2703
Reads data in the edn format (subset of Clojure data):
2704
-
http://edn-format.org
2704
+
https://github.com/edn-format/edn
2705
2705
2706
2706
clojure.tools.reader.edn/read doesn't depend on dynamic Vars, all
2707
2707
configuration
@@ -2728,15 +2728,15 @@ <h2>IO</h2>
2728
2728
Reads one object from the string s. Returns nil when s is nil or empty.
2729
2729
2730
2730
Reads data in the edn format (subset of Clojure data):
2731
-
http://edn-format.org
2731
+
https://github.com/edn-format/edn
2732
2732
2733
2733
opts is a map as per clojure.edn/read">read-string</a> (clojure.tools.reader.edn/) <ahref="https://github.com/clojure/tools.reader" title="clojure.tools.reader.edn/read-string
2734
2734
([s] [opts s])
2735
2735
Reads one object from the string s.
2736
2736
Returns nil when s is nil or empty.
2737
2737
2738
2738
Reads data in the edn format (subset of Clojure data):
2739
-
http://edn-format.org
2739
+
https://github.com/edn-format/edn
2740
2740
2741
2741
opts is a map as per clojure.tools.reader.edn/read">read-string</a></code></td>
Copy file name to clipboardExpand all lines: content/reference/clojure_cli.adoc
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -297,7 +297,7 @@ Print help to console. Also see `man clojure`.
297
297
[[aliases]]
298
298
== Aliases
299
299
300
-
When invoking commands in the context of a project, it is common to need to specify complex data that is hard to quote on the command line. As Clojure programmers, we strongly prefer to specify that data in Clojure syntax (http://edn-format.org/[edn]). The <<deps_edn#,deps.edn>> file format allows us to define arbitrary Clojure data and give that data a name using <<deps_edn#aliases,aliases>>. Aliases are simply keywords that name edn data.
300
+
When invoking commands in the context of a project, it is common to need to specify complex data that is hard to quote on the command line. As Clojure programmers, we strongly prefer to specify that data in Clojure syntax (https://github.com/edn-format/edn[edn]). The <<deps_edn#,deps.edn>> file format allows us to define arbitrary Clojure data and give that data a name using <<deps_edn#aliases,aliases>>. Aliases are simply keywords that name edn data.
301
301
302
302
Each execution mode of the Clojure CLI has many configuration options (the "arg map"). These can be defined in edn maps via aliases and selected on the command line using the aliases in `-A`, `-X`, `-T`, or `-M`. Below is a list of all arg map keys - unless otherwise noted, these are valid in all execution modes.
0 commit comments