help needed in grep and copy


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting help needed in grep and copy
# 1  
Old 11-06-2008
help needed in grep and copy

need help in a command. My requirement is that i m grepping the filename based on a pattern in .tar.gz file and then copying the file into some dir

below is what exactly i want to achieve

step 1: grep -l '30017A6800022D1A' CurrentCollectorMeterReadBackup20081007.tar.gz

step 2: file found should be copied to dir nav/files

How to achieve the above steps without unzipping the file ? Plz help me in this

Last edited by ali560045; 11-06-2008 at 03:26 AM..
# 2  
Old 11-07-2008
Quote:
Originally Posted by ali560045
need help in a command. My requirement is that i m grepping the filename based on a pattern in .tar.gz file and then copying the file into some dir

below is what exactly i want to achieve

step 1: grep -l '30017A6800022D1A' CurrentCollectorMeterReadBackup20081007.tar.gz

step 2: file found should be copied to dir nav/files

How to achieve the above steps without unzipping the file ? Plz help me in this
Code:
zcat CurrentCollectorMeterReadBackup20081007.tar.gz  | grep -l '30017A6800022D1A' && cp CurrentCollectorMeterReadBackup20081007.tar.gz nav/files/

However, I'm not sure if you want to copy a FILE named 30017A... or the file CONTAINING this. Either way, you need to put this into a loop which tests against either each file in the directory, or each record that will be matched.
# 3  
Old 11-07-2008
man zgrep
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep command help needed

Hi All, I am looking for grep command to search the following in files of .cpp/.h of a directory and its sub-directories. 1. (char *) 2. (int *) 3. (float *) Like above pattern i need to search in all the files and list. I am using for example... for char*/const char* $egrep -Rwin... (2 Replies)
Discussion started by: vijaya_svk
2 Replies

2. UNIX for Advanced & Expert Users

Grep - Explanation needed.

grep -E '^(++){5}5000' <file_name> this command searches value 5000 in only 6th column from provided file where pipe ( | )is delimiter which separate columns... can some one plz explain me what '^(++){5}5000' actually does..? :confused: (1 Reply)
Discussion started by: Killer420
1 Replies

3. Shell Programming and Scripting

help needed with using grep in shell programming

Hi, im working on an assignment (airline ticketing system). im kinda having problems with the search function. i want users to be able to search by departure time or by flight. however, my output displays the whole chunk of data instead of what they are supposedly searching for. appreciate if... (1 Reply)
Discussion started by: crazybean
1 Replies

4. UNIX for Dummies Questions & Answers

Grep output help needed

According to linux hardening guide a PATH variable must not contain . or .. so i grep the path variable using. # echo $PATH | grep "." /usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin # echo $PATH | grep ".."... (2 Replies)
Discussion started by: pinga123
2 Replies

5. UNIX for Dummies Questions & Answers

Help Needed with Grep

Hi all, I need some urgent help with grep. I'm simply trying to extract the current date from the syslog file, which is "Oct 6" and then grepping this and output the messages to a new log file. See the below commands and output, even though the log file is created, it is created with all the... (8 Replies)
Discussion started by: wthomas
8 Replies

6. Solaris

Solaris 6.5 MOD disk copy help needed

Hello, we are running Irix 6.5 on our octane/sgi computers - these computers come with an external Sony MOD drive attached via a scsi cable. We have backed info to 2.3 gig MOD disks over the years and woule like to duplicate the MOD's. I believe there are 3 ways to do this: add a second... (1 Reply)
Discussion started by: drew_holm
1 Replies

7. UNIX for Dummies Questions & Answers

grep problem with the ^ symbol, help needed please.

Hello I am new to this forum and have been perplexed by this issue for the last hour of my life, I've tried to search everywhere for a solution to my syntax error, but here is my code. grep -wvnf 'noise.dat' sample.out | sort output: 4:Java Swing 5:Swing Java 6:Software Requirements... (2 Replies)
Discussion started by: Gvsumrb
2 Replies

8. Shell Programming and Scripting

Copy files help needed

Guys, I am new to scripting. I need help in the following I have some files like ls -1 file_5001_1.payor.txt file_5001_1.addr.txt I basically need to copy to another files with same format except replacing 5001 with 5006. output ls -1 file_5001_1.payor.txt file_5001_1.addr.txt... (3 Replies)
Discussion started by: jakSun8
3 Replies

9. UNIX for Advanced & Expert Users

Help Needed in Grep Command

Hi i am using grep command to search a string in a file and i am able to find that string in it .. but moving forward once i find the string i need to remove the 5 lines above that and to remove 2 lines below it .. Just wanted to be clear there should be no lines existing which has a string... (7 Replies)
Discussion started by: ranga27
7 Replies

10. UNIX for Dummies Questions & Answers

Help with tail /grep needed

Hello: I'm a very newbee at UNIX/AIX. What i want to do is to tail a file from the bottom until a certain string is found and write all the lines after the found string to another file. I've tried out a lot of combination with tail and grep but doesn't find the good one. Could someone help... (4 Replies)
Discussion started by: Felix2511
4 Replies
Login or Register to Ask a Question