Skip to content

Instantly share code, notes, and snippets.

@TrebuhD
Created January 25, 2015 16:35
Show Gist options
  • Save TrebuhD/12154222faa7a718bdb2 to your computer and use it in GitHub Desktop.
Save TrebuhD/12154222faa7a718bdb2 to your computer and use it in GitHub Desktop.
#include <unistd.h>
int main(void) {
while(1) {
system("/bin/date");
sleep(1);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment