Unix History Question: Why are filenames/dirnames case sentsitive in Unix?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Unix History Question: Why are filenames/dirnames case sentsitive in Unix?
# 1  
Old 03-14-2005
Unix History Question: Why are filenames/dirnames case sentsitive in Unix?

I tried looking for the answer online and came up with only a few semi-answers as to why file and directory names are case sensitive in Unix. Right off the bat, I'll say this doesn't bother me. But I run into tons of Windows and OpenVMS admins in my day job who go batty when they have to deal with case sensitivity and I hate not really having a good answer for them. The best answer I can give them is that it allows for more filenames in the namespace, but they usually just grunt and reply, "yeah, but who cares". Knowing that Unix seems to have been refined into a really well thought out OS over the decades, I'm sure there must be a reason why case sensitivity was kept (other than legacy compatibility) instead of moving to a case insensitive naming convention. Any gurus out there have any good answers I can give them besides, "You'll get nothing and like it too!!" ;P
# 2  
Old 03-14-2005
I think the reason was because in the real world, there is a difference in name conventions. A is different than a.
Case sensitivity does give more security to passwords, by allowing for more combinations.

I personally prefer case sensitivity, it allows me to have many files, with the same name in a folder, such as Resume, resume. I can have all folders in proper case while files can be all lowercase, allows me to have more control over my filesystem. I believe under DOS/Windows, you could only have a single file named Resume, be it a folder or a file, but not both in the same directory. Unless you add differences to the name.

This may or may not give some help:
http://www.xahlee.org/UnixResource_d...eCaseSens.html
# 3  
Old 03-14-2005
Thoughout the sixties, computers were upper case only. Most printers could not print a lower case letter. Crt's were very rare, and printing terminals could not handle 2 cases. I used to enter my programs on a 029 keypunch which was upper case only.

Unix bucked the trend by supporting two cases. Look at the "stty iuclc" and "stty olcuc" commands. These show the hoops that unix had to jump through to support two cases in a one case world. I believe that they did it to support the Ascii standard which very clearly states that A and a are two different characters.

Microsoft built dos for IBM. At first it was called "PC-DOS". I think IBM wanted compatability with it's other OS's which were monocase.
# 4  
Old 03-26-2005
In my experience, there are very few times where I have to deal with upper case at all in Unix.

I actually prefer lower case now. I see the case sensitivity as another layer of sophistication for unixes. it offers another bit of security as well as for some convention if you wish.

I had a friend who would use Upper case for the first char of a dir name (non-os) then lower for the rest. Also, in teh case of some exe files, use ALL UPPER. For quick identification.

Upper case has its uses... not to be considered trivial.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

The Great History of UNIX (1969-1999) | 30 Years of UNIX History | YouTube Video

I am pleased to announce this new video in 1080 HD for UNIX lovers honoring thirty years of UNIX history spanning from 1969 to 1999 presented in 150 seconds (two and a half minutes) in 1080 HD, celebrating the 50th anniversary of UNIX. The Great History of UNIX (1969-1999) | 30 Years of UNIX... (8 Replies)
Discussion started by: Neo
8 Replies

2. Shell Programming and Scripting

History file in UNIX

commands to view the history file in unix. I am not sure whether it is bash_history.sh (1 Reply)
Discussion started by: ramkumar15
1 Replies

3. Shell Programming and Scripting

Appending date to UNIX Filenames

Hello, I have a file name in the below format and have to append the date as _$currdate. kchik_UK_lo.txt_$currdate. The above should be the format and I dont want to put entire filename as above in the code, but it should give me the output as the above filename.Can anyone please help... (7 Replies)
Discussion started by: harika03
7 Replies

4. What is on Your Mind?

Filenames with hyphens - UNIX style?

Hello everyone! Filenames with hyphens instead of everything else that can be as a space - is it particularly UNIX style of naming or a general practice? It kinda is so in my mind that DOS guys use underscores as spaces and UNIX guys use dashes. Is it so? (5 Replies)
Discussion started by: guest115
5 Replies

5. UNIX and Linux Applications

Unix History

Hi everybody Im Megadrink!!! This is my first thred. Ive recently been introduced to Unix and i was interested in Unix's History. Can anyone give me a breif History On Unix. Just when it was invented/released. Maybe someother cool things about it. Thx for the information in advance!! :D (2 Replies)
Discussion started by: Megadrink
2 Replies

6. UNIX for Dummies Questions & Answers

History feature in Unix

Hi, I'm working on two flavours of unix namely HP-UX and sun solaris. In HP-UX, for executing the previous commands, i use the arrow keys. But on sun solaris this is not working. Can anyone explain how to use history feature effectively in sun solaris os? Thanks (4 Replies)
Discussion started by: venkatesht
4 Replies

7. Shell Programming and Scripting

find filenames like unix commands

Hi, I need to write a small script to search in some specific directories to check if any file is present with a unix command name... Means if the directory contains any files like cat, vi, grep, find etc i need to list those files into a file. Please help Thanks, D (6 Replies)
Discussion started by: deepakgang
6 Replies

8. Shell Programming and Scripting

Unix filenames and spaces

I have files on my unix boxes that users have created with spaces. Example: /tmp/project plan ls -l "/tmp/project plan" works fine. $/tmp>ls -l "/tmp/project plan" -rw-r--r-- 1 root other 0 Jan 31 12:32 /tmp/project plan I created a file called test and put just the... (2 Replies)
Discussion started by: x96riley3
2 Replies

9. UNIX for Dummies Questions & Answers

The history of UNIX and the ideas behind it

Hi. I am new here, and this is my first post at the UNIX.com forums. I have read the book Fire in the Valley: The Making of the Personal Computer, and I noticed that neither UNIX nor Linux was mentioned once in the book. Why is this? What was UNIX's place in the early days of personal computers? ... (6 Replies)
Discussion started by: elendil
6 Replies

10. News, Links, Events and Announcements

Unix History Link

Link describe the Step by step formation of Unix http://perso.wanadoo.fr/levenez/unix/ Also: - History - Author of First Unix C Language - Unix Family research Tree - BSD and Sun History chart - Technical Comparison between Unix Diffrences (4 Replies)
Discussion started by: killerserv
4 Replies
Login or Register to Ask a Question