The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
2k views

Case sensitive searches in Google Chrome

Is there a way to perform case sensitive on page searches in Google Chrome? Say I'm searching for "Tree" and I want to exclude all variants such as "tree" or "TREE" which don't match the case I'm ...
0
votes
2answers
84 views

how to make vmware windows guest look for and write case insensitive files on linux host shared folder?

How to make vmware windows guest look for case insensitive files and folders, and write case insensitive files and folders on a Linux host shared folder, that is a case sensitive file-system, in a ...
1
vote
1answer
50 views

How can I Track Changes of a 'Change Case' operation?

In MS Word 2010, with Track Changes enabled, if I re-type a phrase such as "the quick brown fox" to "The Quick Brown Fox" by selecting and overwriting the first letter of each word it generates eight ...
0
votes
1answer
72 views

awk IGNORECASE not working. weird

One script i used for years on production machine, stopped working after a linux system re-installation. after days of digging it turned out that the special variable IGNORECASE=1 has no effect. I ...
1
vote
2answers
58 views

How to change case of file in power shell

When I to run ren controller Controller in PowerShell I get this error message: ren : Source and destination path must be different. At line:1 char:1 + ren .\controller Controller + ...
1
vote
2answers
415 views

New text files created with uppercase extensions [duplicate]

Possible Duplicate: New text files are created with uppercase extensions New text files that are created via Explorer’s New ⇨ Text Document context-menu entry have uppercase extensions. I ...
14
votes
3answers
2k views

Why is NTFS case sensitive?

I personally thought that NTFS was case insensitive, since you can type cmd, CMD, cMd or even CmD and still get the command prompt. However, why is it that during a CHKDSK x: /f /r, sometimes it fixes ...
9
votes
5answers
11k views

How do you make Windows 7 fully case-sensitive with respect to the filesystem?

I want to make Windows 7 case-sensitive when it reads/writes anything on the hard drive (the C drive, or any other NTFS drive). I found a video via google that says to change the registry key ...
1
vote
0answers
94 views

gvim case-insensitive not working on Solaris 10

Ok, so totally frustrated here. Running gvim (VIM - Vi IMproved 7.1 (2007 May 12, compiled May 27 2008 23:56:31). Have set up my .vimrc to have case insensitive search (set ic). ( No difference ...
0
votes
1answer
173 views

using wget to download from website with case-sensitive URLs to Windows

I used Gnuwin32 wget to download emacs manuals with this command (takes about 30 minutes): wget --mirror --page-requisites --convert-links --no-parent --accept .html,.htm,.css,.js ...
3
votes
1answer
418 views

Case insensitive Basic Authentication with Apache

Is it possible to configure an Apache server to accept case insensitive usernames for Basic Authentication? Currently I'm using a pattern similar to this (in an included file) in my httpd.conf ...
7
votes
1answer
316 views

How can I force Windows to make a file lower-case only?

I am having an issue when developing a WordPress plugin in Windows, and then uploading it to any server running Linux. Originally, the filename of the file was Blue.png and thus I changed it to ...
1
vote
0answers
125 views

Jungledisk and xLetterCaseConflict

I've been using Jungledisk desktop edition successfully for years now to sync between several Ubuntu and Windows machines, but when I started to use it on a Macbook (OS X 10.6.8, case insensitive ...
4
votes
3answers
336 views

How to create a virtual disk with a case-sensitive filesystem on Windows 7?

I don't care which filesystem exactly it will be, I just need the file paths to work in a case-sensitive manner. Maybe a behavior similar to a samba share on Linux box that has case-sensitivity ...
1
vote
1answer
1k views

Can I change my current OSX Partition from case-insentitive to case-sensitive?

I have a Lion System and I ran into some issues because my file-system is case-insensitive. When you create a new partition in the Disk Utility it lets me choose to use either of those: Mac OS ...
0
votes
2answers
75 views

Case sensitive searching in linux

In linux, I want to search for a word in all files in a directory (also in subfolders), the search must be case sensitive. The search must give me all file names, directory names, and line numbers ...
2
votes
2answers
2k views

Untar a given linux tarball on MAC OS X

I have a Linux tarball that can't be unpacked. It gives me an unexpected error. I am told this is due to case insensitive on MAC OS X. How can I untar this file? tar -zxvf file.tar.gz ... x ...
1
vote
1answer
292 views

Is there any (dis)advantage to formatting my Mac to use a Case Sensitive File System

I reformatted my MacBookPro recently and decided to format in a case sensitive file system. It seemed like a good idea at the time. Upon doing some installs it seems Steam doesn't support case ...
4
votes
1answer
190 views

Vim: ignore case in “f” and “t” motion commands

Vim :set ignorecase command do not affect "f" and "t" motion commands in my vim config. Is there any option or hack that makes this commands to ignore case?
0
votes
3answers
447 views

Cannot change case of existing file name in OS X

I have a weird problem from a long time ago already. If I try to rename a file from "myfile.txt" to "MYFILE.txt" and vice versa, nothing changes. The filename still says "myfile.txt". I tried to ...
1
vote
2answers
564 views

Xcode find in document stuck in case-sensitive

When in Xcode editing code for my objective C files, I often press Command-F to bring up the little Find-In-Document banner across the top. Sometimes this gets stuck in case-sensitive search, and when ...
3
votes
1answer
671 views

Available filesystems for Linux that are case-insensitive?

I have a client whose web application was written entirely in a windows environment and served from windows. Unfortunately there's way to many cases of get "file/At/Somelocation.php" where the file ...
4
votes
2answers
1k views

GNU sort by case-sensitive

The sort utility in Ubuntu 10.04 (Lucid) always sort by case-insensitive, just like if you specify --ignore-case to it. The two sort just give the same result: echo -e "c\nb\nB\na" | sort echo -e ...