POV-Ray : Newsgroups : povray.general : Rename the image files for the HTML docs : Re: Rename the image files for the HTML docs Server Time
8 Aug 2024 12:20:07 EDT (-0400)
  Re: Rename the image files for the HTML docs  
From: Matt Giwe
Date: 30 Dec 2000 04:49:36
Message: <3A4DAFAF.89336392@ij.net>
bill wrote:
> 
> After you run htm2html you can script will rename the image files.
> 
> #!/bin/sh
> # Lowercase the I in the Image.* files.
> for SUF in gif jpg
> do
>    for FILE in $(ls *.$SUF)
>    do
>       LOWER=$(echo $FILE | tr 'I' 'i')
>       mv $FILE $LOWER
>       echo "$FILE -> $LOWER"
>    done
> done

	tolower * 

-- 
When you raid a cathouse you take 
the piano player too. 
	-- The Iron Webmaster, 410


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.