How to run .clj file as a script using leningen?
Asked Answered
F

4

41

This is the second question after Is there a standalone Clojure package within Leiningen?

For example, I have a file hello_world.clj, and I can run it using

java -cp clojure.jar clojure.main hello_world.clj.

Since lein already contains Clojure (because I can run lein repl directly), is there a way to do the same thing like

lein script hello_world.clj by lein?

Frontolysis answered 21/8, 2012 at 23:10 Comment(2)
do you mean lein run? github.com/technomancy/leiningen#basic-usageBloodstained
@Bloodstained Maybe not as lein run needs the project.clj created.Frontolysis
P
28

use lein-exec plugin, example from readme.md (updated with "lein" instead of "lein2")

cat foo.clj | lein exec
lein exec -e '(println "foo" (+ 20 30))'
lein exec -ep "(use 'foo.bar) (pprint (map baz (range 200)))"
lein exec -p script/run-server.clj -p 8088
lein exec ~/common/delete-logs.clj
Patmore answered 22/8, 2012 at 0:45 Comment(0)
F
41

There are several ways with lein repl:

  • Very slow: cat your_file.clj | lein repl
  • Slow: echo '(load-file "your_file.clj")' | lein repl
  • Fast:
    1. lein repl
    2. (load-file "your_file.clj")
    3. repeat 2
Filbert answered 29/1, 2015 at 11:23 Comment(1)
The "fast" one didn't work for me. Had to instead use '(clojure.main/load-script "test.clj")'Bumbledom
P
28

use lein-exec plugin, example from readme.md (updated with "lein" instead of "lein2")

cat foo.clj | lein exec
lein exec -e '(println "foo" (+ 20 30))'
lein exec -ep "(use 'foo.bar) (pprint (map baz (range 200)))"
lein exec -p script/run-server.clj -p 8088
lein exec ~/common/delete-logs.clj
Patmore answered 22/8, 2012 at 0:45 Comment(0)
T
8

leiningen can create an 'uberjar' for you with all your dependencies....

lein uberjar

will create a jar for you in the target subdirectory. The jar will contain all the dependencies listed in your project.clj, so you don't need to worry about constructing a complex classpath to invoke your code.

You can reference this uberjar as a single entry in your java classpath in the normal way or, specify a main-class in the project.clj invoke it as an executable jar.

e.g. a project.clj like this:

(defproject clj-scratch "1.0.0-SNAPSHOT"
 :description "FIXME: write description"
 :dependencies [[org.clojure/clojure "1.4.0"]                     
 :main clj-scratch.core)

will invoke the -main function in clj-scratch.core namespace

if you run:

java -jar target/clj-scratch-1.0.0-SNAPSHOT-standalone.jar
Tellurize answered 21/8, 2012 at 23:12 Comment(0)
S
0

I like to use inlein for that.

#!/usr/bin/env inlein

'{:dependencies [[org.clojure/clojure "1.8.0"]
                 [com.hypirion/primes "0.2.1"]]}

(require '[com.hypirion.primes :as p])

(when-not (first *command-line-args*)
  (println "Usage:" (System/getProperty "$0") "prime-number")
  (System/exit 1))

(-> (first *command-line-args*)
    (Long/parseLong)
    (p/get)
    println)

Then just chmod +x script.clj and run it!

Alternatively you can just inlein script.clj my args here as well.

Sportive answered 5/11, 2020 at 11:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.