Difference between revisions of "Zip"

From MidrangeWiki
Jump to: navigation, search
(+ jar xvf)
(External links: +gzip, 5799-PTL)
 
(2 intermediate revisions by the same user not shown)
Line 7: Line 7:
 
*[http://www-912.ibm.com/a_dir/as4ptf.nsf/b3cb9d42f672b70f86256739004afa0f/9183cc8fd0e9143d8625792c005818f7?OpenDocument SI44998 OSP header files for QZIPUTIL service program IBM i 7.1]
 
*[http://www-912.ibm.com/a_dir/as4ptf.nsf/b3cb9d42f672b70f86256739004afa0f/9183cc8fd0e9143d8625792c005818f7?OpenDocument SI44998 OSP header files for QZIPUTIL service program IBM i 7.1]
 
*[http://www-912.ibm.com/a_dir/as4ptf.nsf/b3cb9d42f672b70f86256739004afa0f/ff691ebc002d4f1c8625792c005818e8?OpenDocument SI44777 OSP Zip and Unzip API on V7R1]
 
*[http://www-912.ibm.com/a_dir/as4ptf.nsf/b3cb9d42f672b70f86256739004afa0f/ff691ebc002d4f1c8625792c005818e8?OpenDocument SI44777 OSP Zip and Unzip API on V7R1]
*[http://www.youngiprofessionals.com/wiki/PASE/PASE Young iSeries Professionals PASE page]
+
*[http://www.youngiprofessionals.com/wiki/PASE Young iSeries Professionals PASE page]
 +
* [[5799-PTL]] gzip, part of PRPQ 5799-PTL
  
 
==Categories==
 
==Categories==
Line 13: Line 14:
 
[[Category:Java]]
 
[[Category:Java]]
 
[[Category:LPPs]]
 
[[Category:LPPs]]
 +
[[Category:Utilities]]

Latest revision as of 21:19, 10 February 2016

Zip is a utility that compresses text files. It is often coupled with unzip, which extracts the compressed files from an archive (.zip file). GNU have an open source version called gzip / gunzip. Often, .zip files are sent via email as a poor man's FTP. IBM i does not provide a native zip / unzip utility, so we typically install a PASE version.

Java can be used in a pinch because .jar files are actually an archive (.zip file) of the class files. Use jar xvf to extract.

External links

Categories