aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/unzip/unzip.1
Commit message (Collapse)AuthorAgeFilesLines
* Add missing section after .Xr referenceBaptiste Daroussin2017-02-111-1/+1
| | | | | | | | Reported by: make manlint MFC after: 2 days Notes: svn path=/head/; revision=313663
* - Extract common code from extract()/extract_stdout() to extract2fd()Alex Kozlov2016-01-151-2/+2
| | | | | | | | | | - Update information about central directory handling Obtained from: NetBSD Approved by: des Notes: svn path=/head/; revision=294107
* - Allow to extract symlinksAlex Kozlov2015-12-111-2/+4
| | | | | | | | | | | | - Implement 4-digit year format listing (-y option) - Improve detection of text files - Use %ju for error_count as it is unsigned Obtained from: NetBSD Approved by: des Notes: svn path=/head/; revision=292127
* use .Mt to mark up email addresses consistently (part3)Baptiste Daroussin2014-06-231-2/+2
| | | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco at lastsummer.de> Notes: svn path=/head/; revision=267773
* Remove contractions.Joel Dahl2012-10-071-1/+1
| | | | Notes: svn path=/head/; revision=241331
* Document the unzip(1) '-Z' option implemented in r234206.Glen Barber2012-05-111-1/+11
| | | | | | | | Submitted by: swills (via hacker lounge) MFC after: 3 days Notes: svn path=/head/; revision=235252
* Correct my name in the copyright statement.Dag-Erling Smørgrav2012-04-151-1/+1
| | | | Notes: svn path=/head/; revision=234311
* Remove superfluous paragraph macro.Joel Dahl2012-03-251-1/+0
| | | | Notes: svn path=/head/; revision=233456
* Reencode files from latin1 to UTF-8.Ulrich Spörlein2011-12-301-1/+1
| | | | | | | | | | This makes a tiny percentage of entries in calendars ugly for latin1 users, but fixes them for UTF-8 users. This badly needs a solution involving locale-dependent re-encoding. Notes: svn path=/head/; revision=228991
* Fix broken mdoc.Ulrich Spörlein2011-08-011-1/+1
| | | | | | | | Found by: manlint Approved by: re (kib) Notes: svn path=/head/; revision=224584
* Fix typo in last commit.Gleb Smirnoff2010-10-211-1/+1
| | | | | | | Submitted by: bcr Notes: svn path=/head/; revision=214174
* Document possibility to read from stdin.Gleb Smirnoff2010-10-211-1/+5
| | | | Notes: svn path=/head/; revision=214140
* Bump .Dd for r203977Gavin Atkinson2010-02-161-1/+1
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=203978
* Implement the rename query, for when a file with the same name as the oneGavin Atkinson2010-02-161-11/+0
| | | | | | | | | | | | | | | | | | | | | about to be extracted already exists. The question, and interpretation of the response is deliberately compatible with Info-Zip. This change was originally obtained from NetBSD, but has three changes: - better compatibility with Info-Zip in the handling of ^D - Use getdelim() rather than getline() - bug fix: != changed to == in the "file rename" code I suspect the latter is also a bug in NetBSD, but I can't easily confirm this. PR: bin/143307 Reviewed by: rdivacky (change to unzip.c only) Obtained from: NetBSD src/usr.bin/unzip/unzip.c 1.8 MFC after: 1 month Notes: svn path=/head/; revision=203977
* Add C/c/f/p/v switches plus a bunch of minor fixes and cleanups.Roman Divacky2009-09-081-6/+35
| | | | | | | | | Obtained from: NetBSD Approved by: des (maintainer) Approved by: ed (mentor, implicit) Notes: svn path=/head/; revision=196981
* Update man page for -t.Dag-Erling Smørgrav2008-06-301-2/+5
| | | | Notes: svn path=/head/; revision=180125
* Welcome unzip(1), a pure BSD drop-in replacement for ports/unzip. In itsDag-Erling Smørgrav2008-01-081-0/+155
current state, it can handle all but four of the 991 zip files (including jar files) I was able to identify in the ports tree. The remaining four are two self-extracting archives and two which have garbage preceding the first local header. This limitation is a feature of libarchive(3) which I am currently working to resolve. The code is unnecessarily large due to the need to emulate the exact command-line syntax and behaviour of ports/unzip. My initial incompatible implementation was one quarter the size of the one I am committing here. Notes: svn path=/head/; revision=175154