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

6 lines
135 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;; print modification time
(println (date (file-info "input.txt" 6)))
;; set modification time to now (Unix)
(! "touch -m input.txt")