home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 September / Chip_2000-09_cd1.bin / sharewar / meetwomn / UNIX.DOC < prev    next >
Text File  |  1999-01-24  |  1KB  |  37 lines

  1.                                FOR UNIX USERS
  2.  
  3. The information contained in this file is for UNIX/Linux users only. If you 
  4. use DOS/Windows, you may safely ignore this file.
  5.  
  6. The individual files in "HOW-2 Meet Women" have been converted to DOS 
  7. format, i.e., lines terminated by a LF-CR, and file names truncated to 
  8. '.HTM' and uppercased. This should not cause a problem viewing the files 
  9. with Netscape[tm] under UNIX or Linux, except that the graphic image file 
  10. names need to be converted to lower case (uncompressing a DOS "zip" file on 
  11. a UNIX or Linux system changes the file names to uppercase). The following 
  12. shell script will do this for you automatically. Cut out the script, name it 
  13. (something like 'namefix') and save it to a file, and change the permissions 
  14. to make it executable. 
  15.  
  16.  
  17. -----------------------------------------------------------------------------
  18.  
  19.  
  20.  
  21. #!/bin/sh
  22.  
  23. ls -d *.GIF | awk '{
  24. a=tolower( $0 )
  25. print "mv", $0, a }' | sh
  26.  
  27. ls -d *.JPG | awk '{
  28. a=tolower( $0 )
  29. print "mv", $0, a }' | sh
  30.  
  31.  
  32.  
  33. -----------------------------------------------------------------------------
  34.  
  35.  
  36.     Netscape is a registered trademark of Netscape Communications, Inc.
  37.