Advertisement
Guest User

Untitled

a guest
Jan 14th, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.35 KB | None | 0 0
  1. (with-input-from-file "/dev/null"
  2.   (lambda ()
  3.     (with-output-to-file "/dev/null"
  4.       (lambda ()
  5.         (with-error-to-file "/dev/null"
  6.           (lambda ()
  7.             (if (= 0 (primitive-fork))
  8.                 (execl "/run/current-system/profile/bin/echo" "echo" "you can not see me!\n"))))))))
  9.  
  10. #> guile asdf.scm
  11. #> you can not see me!
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement