Skip to content

Instantly share code, notes, and snippets.

@halgari
Forked from qharlie/gist:3099659
Created July 12, 2012 18:00
Show Gist options
  • Save halgari/3099717 to your computer and use it in GitHub Desktop.
Save halgari/3099717 to your computer and use it in GitHub Desktop.
(defn search-log [log term]
(with-open [rdr (java.io.BufferedReader.
(java.io.FileReader. log ))]
(filter #(not (= -1 (.indexOf % term))
(line-seq rdr))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment