Unix and Linux Discussions Tagged with comments |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
16 |
27,303 |
UNIX for Beginners Questions & Answers |
|
|
|
17 |
17,895 |
Web Development |
|
|
|
2 |
3,544 |
IP Networking |
|
|
|
4 |
7,432 |
Shell Programming and Scripting |
|
|
|
25 |
21,394 |
Shell Programming and Scripting |
|
|
|
2 |
8,312 |
Shell Programming and Scripting |
|
|
|
0 |
1,725 |
Complex Event Processing RSS News |
|
|
|
13 |
11,562 |
HP-UX |
|
|
|
2 |
2,504 |
Shell Programming and Scripting |
|
|
|
0 |
1,947 |
Complex Event Processing RSS News |
|
|
|
0 |
2,275 |
Cartoons for Geeks |
|
|
|
7 |
5,374 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,234 |
Software Releases - RSS News |
|
|
|
0 |
1,385 |
Complex Event Processing RSS News |
|
|
|
4 |
2,908 |
Shell Programming and Scripting |
|
|
|
0 |
2,318 |
Shell Programming and Scripting |
|
|
|
0 |
3,711 |
Complex Event Processing RSS News |
|
|
|
3 |
18,225 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,657 |
Programming |
|
|
|
1 |
4,456 |
UNIX for Advanced & Expert Users |
|
|
|
9 |
5,263 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,769 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,902 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,267 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
4,468 |
Cybersecurity |
|
|
|
3 |
13,643 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
5,354 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
8,248 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,211 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,530 |
UNIX for Dummies Questions & Answers |
zipnote(1) General Commands Manual zipnote(1)
NAME
zipnote - write the comments in zipfile to stdout, edit comments and rename files in zipfile
SYNOPSIS
zipnote [-w] [-b path] [-h] [-v] [-L] zipfile
ARGUMENTS
zipfile Zipfile to read comments from or edit.
OPTIONS
-w Write comments to a zipfile from stdin (see below).
-b path
Use path for the temporary zip file.
-h Show a short help.
-v Show version information.
-L Show software license.
DESCRIPTION
zipnote writes the comments in a zipfile to stdout. This is the default mode. A second mode allows updating the comments in a zipfile as
well as allows changing the names of the files in the zipfile. These modes are described below.
EXAMPLES
To write all comments in a zipfile to stdout use for example
zipnote foo.zip > foo.tmp
This writes all comments in the zipfile foo.zip to the file foo.tmp in a specific format.
If desired, this file can then be edited to change the comments and then used to update the zipfile.
zipnote -w foo.zip < foo.tmp
The names of the files in the zipfile can also be changed in this way. This is done by following lines like
"@ name"
in the created temporary file (called foo.tmp here) with lines like
"@=newname"
and then using the -w option as above.
BUGS
The temporary file format is rather specific and zipnote is rather picky about it. It should be easier to change file names in a script.
Does not yet support large (> 2 GB) or split archives.
SEE ALSO
zip(1), unzip(1)
AUTHOR
Info-ZIP
v3.0 of 8 May 2008 zipnote(1)