- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: zgrep on VMS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2004 11:33 PM
03-31-2004 11:33 PM
zgrep on VMS
Is there any utility availabe which can be used same like zgrep in Unix.
I want to search some values from zip files with running unzip.
Best regards,
Mohammad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2004 12:32 AM
04-01-2004 12:32 AM
Re: zgrep on VMS
I guess Gnu Zip for VMS give zgrep feature. Gnu Zip you can find on open vms freeware site:
http://h71000.www7.hp.com/openvms/freeware/index.html
Check for V6 freeware CD.
Good luck,
Regards,
Lokesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2004 01:10 AM
04-01-2004 01:10 AM
Re: zgrep on VMS
http://www.oooovms.dyndns.org/gnv/gzip/
I don't know if it does zgrep.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2004 01:40 PM
04-01-2004 01:40 PM
Re: zgrep on VMS
zgrep is not part of gzip. Actually at least on my system it is a shell script doing the decompress "under the hood".
A simple solution would be something along the lines
pipe gunzip -c file.ext-gz | search sys$pipe:
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2004 03:35 PM
04-01-2004 03:35 PM
Re: zgrep on VMS
For ZIP archives, there is a zipGrep.pl script in the examples directory of the Perl extension Archive::Zip. See:
http://search.cpan.org/~nedkonz/Archive-Zip-1.10/
You will also need to install the Compress::Zlib extension, and, of course, Perl.