home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / cops_104.zip / cops_104 / kuang.pl.shar / kuang_all < prev    next >
Text File  |  1992-03-10  |  284b  |  18 lines

  1. #!/bin/sh
  2. #
  3. #   Quick script to run kuang on all the users on your system.  Requires
  4. # the perl version of kuang, of course.
  5. #
  6. #  df, 1990
  7. #
  8. etc_passwd=/etc/passwd
  9. results=./Success
  10.  
  11. all_users=`awk -F: '{print $1}' $etc_passwd`
  12.  
  13. for i in $all_users
  14.     do
  15.     ./kuang $i >> $results
  16.     done
  17.  
  18.