Re: Upper <->Lower in shell script

1999-12-17 Thread Mike Smith
> This message was sent from Geocrawler.com by "Alex" <[EMAIL PROTECTED]> > Be sure to reply to that address. > > Hello, > > I need in my shell script change upper case to > lower case for characters. Cureently , I call c > programm from script which do it. > Is anybody did this inside script?

Re: Upper <->Lower in shell script

1999-12-17 Thread Chris Costello
On Fri, Dec 17, 1999, Alex wrote: > I need in my shell script change upper case to > lower case for characters. Cureently , I call c > programm from script which do it. > Is anybody did this inside script? Oops. That should be typeset -l. $ typeset -l var $ var=ABC $ echo $var abc -- |Ch

Re: Upper <->Lower in shell script

1999-12-17 Thread Chris Costello
On Fri, Dec 17, 1999, Alex wrote: > I need in my shell script change upper case to > lower case for characters. Cureently , I call c > programm from script which do it. > Is anybody did this inside script? Shells such as ksh (both PDKSH and AT&T KSH, available in ports, support this) and bas

Re: Upper <->Lower in shell script

1999-12-17 Thread Dan Nelson
In the last episode (Dec 17), Alex said: > I need in my shell script change upper case to lower case for > characters. Cureently , I call c programm from script which do it. Is > anybody did this inside script? #!/bin/sh var=MixedCase lvar=`echo $var | tr A-Z a-z` echo $lvar #!/usr/local/bin/zsh

Upper <->Lower in shell script

1999-12-17 Thread Alex
This message was sent from Geocrawler.com by "Alex" <[EMAIL PROTECTED]> Be sure to reply to that address. Hello, I need in my shell script change upper case to lower case for characters. Cureently , I call c programm from script which do it. Is anybody did this inside script? Thank you Alex