|
|
Question : Find command with Case insensitive on
|
|
How to make using Find command to do a case insensitive find?
|
Answer : Find command with Case insensitive on
|
|
You can try using grep with find
For e.g., if you want to find a file called "bkup" inside a directory /arch then you can give the following command:
# find . | grep -i bkup
This shud give you the file name in the relative path format.
|
|
|
|