nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

Linux Finding Files Irrespective of Case

This is a discussion on Linux Finding Files Irrespective of Case within the Linux software forums, part of the Linux Getting Started category; Finding Files Irrespective of Case. Example I need to find out all of the following files Code: Abc.txt ABC.txt ABc.TXT ...


Go Back   nixCraft Linux Forum > Linux Getting Started > Linux software

Register FAQ Members List Calendar Forgotten your password? Mark Forums Read
  #1 (permalink)  
Old 01-16-2007, 05:23 PM
Member
User
 
Join Date: Feb 2005
Posts: 66
Rep Power: 0
chiku
Default Linux Finding Files Irrespective of Case

Finding Files Irrespective of Case. Example I need to find out all of the following files

Code:
Abc.txt
ABC.txt
ABc.TXT
TIA
__________________
There's no place like 127.0.0.1
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 01-16-2007, 09:36 PM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,030
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Pass -iname option to find command
Code:
find / -iname "*.txt" -print
It will match
abc.txt
Abc.Txt
ABC.txt etc

See my article http://www.cyberciti.biz/tips/linux-...nd-part-1.html for more info
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
View log files under Linux sweta Getting started tutorials 0 05-30-2007 01:31 AM
Finding machines S/N and Model Type mlperry Linux software 3 10-05-2006 11:15 PM
finding files in linux chiku Linux software 2 08-03-2006 10:23 AM
script finding file and sorting dementeddude Shell scripting 14 07-25-2006 06:30 PM
shell script for finding users not logged on for last 10 day ganes Shell scripting 4 07-06-2005 12:01 PM


All times are GMT +5.5. The time now is 10:54 PM.


Powered by vBulletin® Version 3.7.4 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36