Advertisement
Tragique

bearbeiten.sh

Feb 17th, 2021
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # _rgb__trouw 2012
  4.  
  5. nounce=$1;
  6. path=$2;
  7.  
  8. echo $nounce > nounce.int;
  9.  
  10.  
  11. while true; do
  12.  
  13. nounce=$(cat nounce.int);
  14.  
  15. for ((i=0; i < 100; i++));
  16. do
  17.  
  18.  
  19. head -c $nounce $path;
  20.  
  21. done;
  22.  
  23. done &
  24.  
  25. cat /dev/random >> $path;
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement