![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| need urgent help | namishtiwari | Shell Programming and Scripting | 10 | 02-18-2008 05:42 AM |
| Urgent Help With Sed | katrvu | Shell Programming and Scripting | 10 | 02-07-2008 08:43 PM |
| URGENT,URGENT- Need help tape drive installation | sriny | UNIX for Advanced & Expert Users | 3 | 11-16-2006 12:43 PM |
| URGENT---URGENT--No OK PROMPt after RSC CONFIG | sriny | SUN Solaris | 7 | 10-29-2006 08:06 AM |
| Urgent !! | desiondarun | UNIX for Dummies Questions & Answers | 1 | 08-08-2006 05:49 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
need help urgent...........
Hi friends..
I am using the below command to search few files from many folders which is under one folder.. i mean let say the path is A/B/C...and inside C...i have 1-10 folder... the below command is working fine.... for i in 1 3 5 7; do find /A/B/C/${i} -name "*.txt" -o -name "*.csv" -o -name "*.TXT" -o -name "*.dat" |xargs ls -ltr |awk '{print $8 ,$9}' >> ${i}.txt done this will give me the result from the folder 1 3 5 7 ,from 1-10 which is inside A/B/C[/b] and print the file having the above extension into 1.txt , 3.txt , 5.txt , 7.txt etc inside /A/B/C Help needed.. i need some help so that my syntax will search the file only from folder 1,3,5,7 from the 10 folder A/B/C and the out put from these 4 folder will be display in the single file i.e result.txt....not in different folder. the above 1,3,5,7 folders are inside A/B/C |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Not sure what you mean. Is something like this what you are looking for?
rm -f result.txt for i in 1 3 5 7; do find /A/B/C/${i} ! -path /A/B/C/${i} -prune -name "*.txt" -o -name "*.csv" -o -name "*.TXT" -o -name "*.dat" |xargs ls -ltr |awk '{print $8 ,$9}' >> result.txt done |
|
#3
|
||||
|
||||
|
How many times are you going to post the same question???
You will get less help from the community because of this.. Either abide by the rules or leave! can any body help me out on this... Can any body give me a solution to this... need help urgent........... |
|
#4
|
|||
|
|||
|
Quote:
Thread closed. |
|||
| Google The UNIX and Linux Forums |