> 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?
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
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
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
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
5 matches
Mail list logo