Guest User

Untitled

a guest
Sep 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Usage:
  4. # clojure [<file>.clj [arguments]]
  5.  
  6. if [ $# -eq 0 ]; then
  7. rlwrap java -server -cp /Applications/Clojure/clojure-1.3.0.jar clojure.main
  8. else
  9. rlwrap java -server -cp /Applications/Clojure/clojure-1.3.0.jar clojure.main $1 -- "$@"
  10. fi
Add Comment
Please, Sign In to add comment