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

Describe the mknod command and when you’d use it.

0 Answers  


How to monitor ports in a linux machine, with single command?

7 Answers  


How we can set the password length in linux?

2 Answers   Wipro,


I want to built a fire wall using iptables. My condition is " inbound to 192.168.0.2 with a port of 80 from 172.168.0.1 should accept"

6 Answers   NetEnrich,


what is the command to make a process to run in the background from foreground?

5 Answers   Patni,


What is bash history linux?

0 Answers  


What command used for showing user info like Login Name, Canonical Name, Home Directory,Shell etc..?

0 Answers  


How do you check the disk usage in Linux?

1 Answers  


How do I change directories in linux command line?

0 Answers  


what is difference between $@ and $* in UNIX Shell script

3 Answers   Google,


Main configuration file and command used for NFS enabling exported directories and deamons?

0 Answers  


If the programmer wishes to execute an instruction at the specified time. Which command is used?

0 Answers  


Categories