Guest User

Untitled

a guest
Jan 22nd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.30 KB | None | 0 0
  1. program white_wipe;
  2.  
  3. uses
  4.   Unix;
  5.  
  6. var
  7.          S: LongInt;
  8. begin
  9.      S := fpsystem('dd if=/dev/urandom of=space bs=4M');
  10.          WriteLn('Program exited with status : ', S);
  11.      S := fpsystem('/usr/bin/srm -Prv space'); //Remove the created File
  12.      WriteLn('Program exited with status : ', S);
  13. end.
Add Comment
Please, Sign In to add comment