Advertisement
Guest User

Untitled

a guest
Jan 11th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. (use-modules (ice-9 popen))
  2.  
  3. (let* ((port (open-input-pipe "date --utc"))
  4. (str (read-line port)))
  5. (close-pipe port)
  6. str)
  7.  
  8. ;; In procedure module-lookup: Unbound variable: read-line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement