X-Spam-Check-By: sourceware.org Message-ID: <31b7d2790701091428h4ca730c6p3ddec3f4e875bc6d@mail.gmail.com> Date: Tue, 9 Jan 2007 22:28:40 +0000 From: "DePriest, Jason R." To: cygwin AT cygwin DOT com Subject: Re: username should be lower-case for $USER In-Reply-To: <8247784.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8241120 DOT post AT talk DOT nabble DOT com> <008601c7340c$a76fc380$a501a8c0 AT CAM DOT ARTIMI DOT COM> <8247784 DOT post AT talk DOT nabble DOT com> X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com On 1/9/07, David Smiley wrote: > > I forgot to add, I log into a windows domain and so I can't set the case. > Perhaps this issue only relates to windows domain logins. Maybe they are > case insensitive because when I log into the domain, I ALWAYS specify it in > lower case. I don't think I've ever seen it presented to me (in Windows) as > upper case. Yet in CYGWIN, $USER=DSMILEY. If domain logins are case > *in*sensitive (appears likely), then it would seem to me that it should be > normalized to lower-case for use in CYGWIN. > $USER is a Windows environment variable and Cygwin doesn't change it. It just reports what Windows says. I disagree that Cygwin should normalize it to lower case by default. You can do something creative with your logon process by sending the variable to some shell script and having it fix the case. I don't write bash scripts or awk so here is an example in perl. =-=-=-=-=-=-=-=-=-=-=-=-= code =-=-=-=-=-=-=-=-=-=-=-=-= #!/usr/bin/perl -w $word = shift; print " In: $word\n"; $word =~ s/([A-Z])/lc($1)/ge; print "Out: $word\n"; =-=-=-=-=-=-=-=-=-=-=-=-= code =-=-=-=-=-=-=-=-=-=-=-=-= Examples of output: 37067 AT HOST ~ $ ./test3.pl DSmiley In: DSmiley Out: dsmiley 37067 AT HOST ~ $ ./test3.pl DSMILEY In: DSMILEY Out: dsmiley 37067 AT HOST ~ $ ./test3.pl dsmiley In: dsmiley Out: dsmiley 37067 AT HOST ~ $ -Jason -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/