RosettaCodeData/Task/File-modification-time/NewLISP/file-modification-time.newlisp

6 lines
135 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
;; print modification time
(println (date (file-info "input.txt" 6)))
;; set modification time to now (Unix)
(! "touch -m input.txt")