Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


if i have one folder say aaa and that folder having 100
files from that 50 files there aaa word is written how to
find in which aaa is writen and without opening that file

Answers were Sorted based on User's Feedback



if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / pankaj kumar

grep -r aaa aaa

Is This Answer Correct ?    4 Yes 1 No

if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / vaithy

grep -r aaa -e aaa

where,
-r recursive (includes all files, Folders and subfolders)
-e pattern (to be searched)

Is This Answer Correct ?    2 Yes 0 No

if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / nixor

grep -rl aaa ./aaa/*

That would list the file name where the string aaa is
present. (-l switch)

Is This Answer Correct ?    0 Yes 0 No

if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / m.krishna kumar

#cd aaa
#cat <file name> | grep aaa

this is work only if you know the file name otherwise it is
not use . other way is if you must count the file then find
the file name of the 50 file then use the above command.

Is This Answer Correct ?    1 Yes 1 No

if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / brian

Find ./aaa -type f -exec grep -l aaa {} \;

This will list the paths and file names containing the text aaa in any file in the directory named aaa.

Is This Answer Correct ?    0 Yes 0 No

if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is..

Answer / rallapalli

#cd /aaa | ls -l | grep aaa


see which file time and date through that u can know


Thanks

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More Linux Commands Interview Questions

how to see unallocated hard disk space on linux

12 Answers   HCL,


script is like x=10; y=20; [$x-ne$y]; echo $ please give me output.

2 Answers   Amdocs, Google,


You wish to print a file ‘draft’ with 60 lines to a page. What command would you use?

0 Answers  


In a company there are 3 groups i.e Finance, HR and Marketing. Each groups having 3 members. There is a file named as file1.txt. The permission set for the above file is rwx-rw----x. Now the question is only the members of Hr and Marketing group can view and edit the file. But the file is not accessible to the members of Finance Group. Can anyone tell me what would be the exact command for linux.root@localhost#<type the exact linux command>

3 Answers   Six Sigma,


My machine is running half duplex mode how to change half duplex to full duplex?

4 Answers   Oracle,


Why do we use cmake?

0 Answers  


What is df command in unix?

0 Answers  


What is the command to find the hardware configuration in Linux?

2 Answers  


What is the best cpu stress test?

0 Answers  


1.what is Kernel parameters? 2.how many cpu have use in your machine?

3 Answers   ConSim,


What command should you use to check your file system?

0 Answers  


What is the difference between rmdir and rm r?

0 Answers  


Categories