Skip to content

Instantly share code, notes, and snippets.

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