Mercurial > cortex
comparison org/movement.org @ 316:2c7fbcbd5ebb
replaced clojure.contrib.shell-out with clojure.java.shell
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 28 Feb 2012 13:44:46 -0600 |
parents | 5d448182c807 |
children | bb3f8a4af87f |
comparison
equal
deleted
inserted
replaced
315:a48a75e5876c | 316:2c7fbcbd5ebb |
---|---|
248 ** Making the Worm Muscles Video | 248 ** Making the Worm Muscles Video |
249 #+name: magick7 | 249 #+name: magick7 |
250 #+begin_src clojure | 250 #+begin_src clojure |
251 (ns cortex.video.magick7 | 251 (ns cortex.video.magick7 |
252 (:import java.io.File) | 252 (:import java.io.File) |
253 (:use clojure.contrib.shell-out)) | 253 (:use clojure.java.shell)) |
254 | 254 |
255 (defn images [path] | 255 (defn images [path] |
256 (sort (rest (file-seq (File. path))))) | 256 (sort (rest (file-seq (File. path))))) |
257 | 257 |
258 (def base "/home/r/proj/cortex/render/worm-muscles/") | 258 (def base "/home/r/proj/cortex/render/worm-muscles/") |