fix find permission issue with a hack
parent
5acf7ea3e1
commit
72c63189e1
|
@ -26,9 +26,11 @@
|
||||||
"(default :3)"
|
"(default :3)"
|
||||||
""))))
|
""))))
|
||||||
|
|
||||||
|
(defn bounded-find [path] (find path "-maxdepth" "3"))
|
||||||
|
|
||||||
(defn modify-time [username]
|
(defn modify-time [username]
|
||||||
(->> (.format "/home/{}/public_html" username)
|
(->> (.format "/home/{}/public_html" username)
|
||||||
find
|
bounded-find
|
||||||
(map (fn [filename] (getmtime (.rstrip filename))))
|
(map (fn [filename] (getmtime (.rstrip filename))))
|
||||||
list
|
list
|
||||||
max))
|
max))
|
||||||
|
|
Reference in New Issue