RosettaCodeData/Task/File-modification-time/NewLISP/file-modification-time.l
2023-07-01 13:44:08 -04:00

5 lines
135 B
Text

;; print modification time
(println (date (file-info "input.txt" 6)))
;; set modification time to now (Unix)
(! "touch -m input.txt")