ज़िप संग्रह में फ़ाइलों को सूचीबद्ध करने के लिए आप निम्न कमांड का उपयोग कर सकते हैं।
unzip -l
एक संपीड़ित संग्रह को प्राप्त करने के लिए आपको उस प्रकार के संग्रह प्रारूप के साथ काम करने के लिए निर्मित संपीड़ित संग्रह उपयोगिताओं का उपयोग करना चाहिए।
ज़िप अभिलेखागार के लिए:
zipgrep --help
usage: zipgrep [egrep_options] pattern zipfile [members...]
Uses unzip and egrep to search the zip members for a string or pattern.
टार अभिलेखागार के लिए:
zgrep --help
Usage: /bin/zgrep [OPTION]... [-e] PATTERN [FILE]...
Look for instances of PATTERN in the input FILEs, using their
uncompressed contents if they are compressed.
OPTIONs are the same as for 'grep'.
कुछ अन्य उपकरण हैं जो अभिलेखागार के साथ भी काम करते हैं। आप एक ही काम करने के लिए बाहर grep में डाल सकते हैं।
zcat
zcat my.archive.zip | grep "some text"
या आप इन उपकरणों की खोज कार्यक्षमता का उपयोग कर सकते हैं
zless
zmore