Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #include <unistd.h>
  2.  
  3. int main(void) {
  4. while(1) {
  5. execl("/bin/date", "/bin/date", NULL);
  6. sleep(1);
  7. }
  8. return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement