On Wed, Jun 11, 2003 at 04:11:15PM +1000, Stuart Guthrie wrote: > From the ThisMustHaveBeenDoneBeforeDept > > I?ve a friend who has a Linux server and they have got a MS web site > loaded. Problem is that MS doesn?t care about upper/lower case and > GNU/Linux does. Is there a utility that can uncapitalise image file > names, directory names and tags or should I write one?
You can translate the names using tr: tr [:upper:] [:lower:] A little bit of shell arround it will do what you want for the fielnames. For the tags I'd recomend perl. There are plenty of sources for good http tag matching regex's -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
