README [skip ci]

This commit is contained in:
Michiel Borkent 2020-10-03 15:19:30 +02:00
parent 89d7313e5c
commit da79d2ed82

View file

@ -612,7 +612,9 @@ $ export BABASHKA_CLASSPATH=$(clojure -Spath -Sdeps '{:deps {clj-commons/fs {:mv
Write a little script, say `glob.clj`:
``` shellsession
(ns foo (:require [me.raynes.fs :as fs])) (run! (comp println str) (fs/glob (first *command-line-args*)))'
(ns foo (:require [me.raynes.fs :as fs]))
(run! (comp println str)
(fs/glob (first *command-line-args*)))
```
Now we can execute the script which uses the library: