locate command doubt !!!


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting locate command doubt !!!
# 1  
Old 01-19-2009
Bug locate command doubt !!!

Hello,
I want to search for a file/directory named "abc" which is located anywhere in the given unix system.
I am using the command :-
Quote:

$ locate abc
But the problem is that this is giving me all combinations of files with have 'abc' in their name. But can I know the option to be used to get the location where only "abc" is present.Can u please help me !!!
# 2  
Old 01-19-2009
You should use the find command. man find(1).
# 3  
Old 01-19-2009
You can write it using meta character patterns and also regular expressions with -r. So just check
Code:
man locate

and play around a bit.

Edit: Or as fpmurphy says Smilie

Last edited by zaxxon; 01-19-2009 at 12:37 PM.. Reason: added comment
# 4  
Old 01-19-2009
Bug

hello sir,
I know abt the "find" command.But it can be used to search only in the current directory. But my requirement asks me "anywhere in the given system".

So I need to use LOCATE command.Now can you please tell me how to get a unique search........
# 5  
Old 01-19-2009
Exact search for "abc"

Hi

U can use the Find command which has more options compared to that of the Locate command.

In addtion to this u can also use the grep command to specifically search the word "abc"
# 6  
Old 01-19-2009
Code:
If it is there, this should find it within the filesystem called "given_system".

find /"given_system"/ -name "abc" -follow -print


Last edited by methyl; 01-19-2009 at 11:07 PM.. Reason: search for file/dir
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mailx command doubt

hi all, I would need to add the description in the below syntax. let me know the below syntaxt how it can be changed to add the description in the below. ps -ef | grep "server" | mailx -s "servers currently which are running" operational@acel.com Server 62 -> Used for User acessing.... (14 Replies)
Discussion started by: arun888
14 Replies

2. UNIX for Dummies Questions & Answers

Doubt in ls command

dear users and experts, i am stuck withis command and i am unable to understand what is it doing?? ls -d * (7 Replies)
Discussion started by: seshank
7 Replies

3. Shell Programming and Scripting

Locate command not working

HI when ever i type the locate command it is saying like below warning: locate: warning: database /var/lib/slocate/slocate.db' is more than 8 days old i am using Linux . version is as follows... $ uname -a Linux abc.abc.com 2.6.9-89.35.1.ELhugemem #1 SMP Tue Jan 4... (3 Replies)
Discussion started by: ptappeta
3 Replies

4. AIX

Locate command

Hello to all, Can I use the "locate" command on AIX 5.3 like on Linux. If yes what packages should I install and where can I find them. Thanks, Enid (9 Replies)
Discussion started by: enux
9 Replies

5. Homework & Coursework Questions

locate command alternative,,

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! Ok, Im back with another small problem. I created a script (the one posted in the last thread). After some help from some members here all is good. The problem is I made it... (4 Replies)
Discussion started by: ozman911
4 Replies

6. UNIX for Dummies Questions & Answers

Locate command in encrypted home

Hi! I have some files that I want to locate using the locate command in terminal, but my home folder is encrypted using FileVault from Mac OS X 10.6. Any idea how can I locate them, being my home encrypted? (8 Replies)
Discussion started by: tirwit
8 Replies

7. HP-UX

Locate command in HP-UX and Solaris

Previously i worked on linux now i am working on HP-UX and solaris ... I am not able to use Locate command(command not found) in HP-Ux and solaris. Suggest me some options to use locate (6 Replies)
Discussion started by: girija
6 Replies

8. UNIX for Dummies Questions & Answers

command locate.

Hi, I am aware of the command locate/slocate. But when I try to search the file which is located in /tmp. Its not able to get it. I tried by updating the database also with the command updatedb. Is there any consern that the command 'locate' dont check /tmp??? And I knew that locate is the... (5 Replies)
Discussion started by: praveen_b744
5 Replies

9. UNIX for Dummies Questions & Answers

doubt in tr command

Hi, I am trying to understand a script and found a line as follows: tr '\211\233\240' '\040' < $IN_FILE | tr -cd '\11\12\15\40-\176' > $TEMP_FILE Can any one explain the above line .. What are they trying to translate using the tr command.. I have not used tr command.. so feeling little bit... (2 Replies)
Discussion started by: risshanth
2 Replies

10. AIX

doubt in cal command

I am new to unix... How to get all the saturdays of a specific year? for a specific month, i tried as below.. cal 02 2006 | awk '{print $7}' but it is not giving all saturdays.... can anyone help me with this? Thanks in advance, Sumi (9 Replies)
Discussion started by: sumi
9 Replies
Login or Register to Ask a Question