Cygwin environment variable case
        Posted  
        
            by Michael
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Michael
        
        
        
        Published on 2010-05-14T01:47:22Z
        Indexed on 
            2010/05/14
            1:54 UTC
        
        
        Read the original article
        Hit count: 253
        
cygwin
For some reason on one pc, when variable names are going from batch file to Cygwin environment, they are capitalizing. On other the case stay intact.
@set aa=bb
%BASH% --login -c "set"
so the output in one case will show AA=bb in other case aa=bb
How to control the case of the exported variables?
© Stack Overflow or respective owner