Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Legacy Data Files on a Case-sensitive File-system

by jwkrahn (Abbot)
on Jan 21, 2010 at 01:16 UTC ( [id://818606]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $name = 'aramis.DAT';
    
    ...
    
        if (/$names/i){
    
  2. or download this
        if (/$names/i){
    
  3. or download this
        if (/\A\Q$name\E\z/i){
    
  4. or download this
    my $name = 'aramis.dat';
    
    ...
    
        if (lc eq $name){
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://818606]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-03-29 06:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found