home *** CD-ROM | disk | FTP | other *** search
/ norge.freeshell.org (192.94.73.8) / 192.94.73.8.tar / 192.94.73.8 / pub / computers / 3b2 / images / misc / proc
Text File  |  2009-05-20  |  244b  |  14 lines

  1. for i in `cat file|grep http|awk '{print $2}'`
  2. do
  3.  case $i in
  4.  */) dir=`echo $i|cut -d/ -f8`
  5.      echo "mkdir $dir"
  6.      mkdir $dir
  7.     cd $dir
  8.      lynx --dump $i > file
  9.     cd ~ftp/pub/computers/3b2/images/
  10.     ;;
  11.   *) snarf $i ;;
  12.  esac
  13. done
  14.