search for a string in zip file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers search for a string in zip file
# 1  
Old 07-20-2011
Question search for a string in zip file

Hi,

I know gzcat helps grep for a string inside a file that has been zipped using gzip command.

However, how can the same be achieved for files zipped using zip command and any other compression commands you may know off.

Thanks,
Mohtashim
# 2  
Old 07-20-2011
For zip there is zcat or zgrep, for bzip2 there is bzcat and bzgrep. I do not know of a universal reading tool for all of them, sorry.
# 3  
Old 07-20-2011
Question

zip debug.log

ls -ltr debug.log.zip
-rw-r--r-- 1 wlsuser wlsgrp 3332 Jul 20 08:51 debug.log.zip

Issue:
zcat debug.log.zip | grep "SetPriorityByPerformance"
debug.log.zip.Z: No such file or directory
zgrep debug.log.zip | grep "SetPriorityByPerformance"
bash: zgrep: command not found

uname -a
SunOS myserver Generic_144488-07 sun4v sparc SUNW,SPARC-Enterprise-T5220

Can you please help ?
# 4  
Old 07-20-2011
Try zcat < filename
# 5  
Old 07-20-2011
Question

zcat < debug.log.zip | grep "SetPriorityByPerformance"
stdin: not in compressed format

No Luck..
# 6  
Old 07-20-2011
Then you're not making the right kind of files for zcat. If you're making actual name-brand zip files, then nothing but funzip can extract those to a pipe...

Do you have gzip? Try making the files with gzip filename which should turn it into filename.gz
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Search a string and display its location on the entire string and make a text file

I want to search a small string in a large string and find the locations of the string. For this I used grep "string" -ob <file name where the large string is stored>. Now this gives me the locations of that string. Now how do I store these locations in a text file. Please use CODE tags as... (7 Replies)
Discussion started by: ANKIT ROY
7 Replies

2. UNIX for Dummies Questions & Answers

Search for a string,delete the line and replace with new string in a file

Hi Everyone, I have a requirement in ksh where i have a set of files in a directory. I need to search each and every file if a particular string is present in the file, delete that line and replace that line with another string expression in the same file. I am very new to unix. Kindly help... (10 Replies)
Discussion started by: Pradhikshan
10 Replies

3. UNIX for Advanced & Expert Users

Wanted to replace string in an .xlsx file in multiple ZIP Files

Hi , I am having a ZIP file containing an .xlsx file . Now i wanted to replace "GJ" to blank in the .xlsx file . I tried using the below code but not working , Please guide : #!/bin/bash log="/home/srikant/scripts/replacescriptFHO.log" date > $log echo "" >> $log echo initiating for FHO... (1 Reply)
Discussion started by: vipinmaster
1 Replies

4. Shell Programming and Scripting

Search string within a file and list common words from the line having the search string

Hi, Need your help for this scripting issue I have. I am not really good at this, so seeking your help. I have a file looking similar to this: Hello, i am human and name=ABCD. How are you? Hello, i am human and name=PQRS. I am good. Hello, i am human and name=ABCD. Good bye. Hello, i... (12 Replies)
Discussion started by: royzlife
12 Replies

5. Shell Programming and Scripting

Search a string in a text file and add another string at the end of line

Dear All I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB... (5 Replies)
Discussion started by: suryanarayana
5 Replies

6. Shell Programming and Scripting

Search a string in a text file and add another string at the particular position of a line

I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB and add/replace... (1 Reply)
Discussion started by: suryanarayana
1 Replies

7. Shell Programming and Scripting

search string in a file and retrieve 10 lines including string line

Hi Guys, I am trying to write a perl script to search a string "Name" in the file "FILE" and also want to create a new file and push the searched string Name line along with 10 lines following the same. can anyone of you please let me know how to go about it ? (8 Replies)
Discussion started by: sukrish
8 Replies

8. UNIX for Dummies Questions & Answers

How to search for a string within a zip

Hi Guys, We have some really large zip files containing hundreds of files, we need to search within these compressed files for a string in the filename eg ABC if found then extract the file from the zip ? I've searched for a long time but no joy Any help really appreciated Thanks ... (6 Replies)
Discussion started by: petef
6 Replies

9. Shell Programming and Scripting

Matching a string (zip code) from a list in a separate file

I have a list of postal addresses and I need to pull the records that match a list of zip codes in a separate file. The postal addresses are fixed width. The zip code is located in character position 149-157. Something better than: cat postalfile.txt | grep -f zipcodes.txt would be great. $... (8 Replies)
Discussion started by: sitney
8 Replies

10. Shell Programming and Scripting

appending string to text file based on search string

Hi, I need to append string "Hi" to the beginning of the lines containing some specific string. How can I achieve that? Please help. Malay (1 Reply)
Discussion started by: malaymaru
1 Replies
Login or Register to Ask a Question