Is there a way to edit files inside of a zip file without explicitly extracting them first?

49

19

I sometimes need to make changes to a .zip or .jar file, so I usually move the file to /tmp, extract all the files with unzip, edit a few files, and then re-zip up the files. This works, but it can be tedious. Is there a utility or shell script that I can use to edit a file inside of a zip file without explicitly calling unzip and zip (even if it's just a wrapper around these commands)?

austin

Posted 2013-09-19T17:58:10.040

Reputation: 758

Just curious if the answer works on .jar files? (I didn't test it there.) – beroe – 2013-09-24T02:31:43.690

@beroe It should since those use the zip compression algorithm. That was actually my main motivation for looking for a solution because I had .war files deployed on an app server that I didn't feel like re-packaing up and re-deploying just to modify a single file. – austin – 2013-09-24T14:41:09.930

Great. I am going to try to fix the function so it preserves directory structure inside the archive. Currently I think it only works on files at root level, but for my purposes, subfolders are more useful. – beroe – 2013-09-24T14:45:32.283

@beroe That's pretty cool. Before asking this, I was going to code up a python script for launching a psudo-shell "inside" the zip file to execute arbitrary commands. I'd be interested in what you come up with. – austin – 2013-09-24T14:47:42.003

OK, added another solution to support sub-folders, and it works in limited testing. – beroe – 2013-09-24T19:37:09.313

Answers

19

Do you know the name of the file in the archive before unzipping it? You could make a function to unzip to /tmp, edit, and refresh the zip:

zipedit(){
    echo "Usage: zipedit archive.zip file.txt"
    unzip "$1" "$2" -d /tmp 
    vi /tmp/$2 && zip -j --update "$1"  "/tmp/$2" 
}

As it says, usage is:

zipedit myarchive.zip myfile.txt

This unpacks the named file from the archive, saves it to /tmp, edits it in vi then adds it back to the archive, while "junking" the path. Add to your .bash_profile, assuming bash...

EDIT: Below is a version which works with subfolders inside the archive... Note, do not use a slash before the name of the folder (i.e. use myfolder/file.txt not /myfolder/file.txt). If you edit a file that didn't already exist in the archive, it will create it for you. Also not sure if it will work with the absolute path to the zip file. Best stick with relative.

zipedit(){
    echo "Usage: zipedit archive.zip folder/file.txt"
    curdir=$(pwd)
    unzip "$1" "$2" -d /tmp 
    cd /tmp
    vi "$2" && zip --update "$curdir/$1"  "$2" 
    # remove this line to just keep overwriting files in /tmp
    rm -f "$2" # or remove -f if you want to confirm
    cd "$curdir"
}

Thanks for the question. I'll probably end up using this one too!

Another edit: Untested, but I read that vim and emacs will both edit jar files directly?

beroe

Posted 2013-09-19T17:58:10.040

Reputation: 881

1I can confirm that vim works splendid for editing zip-files from the command line on Linux, thanks alot for the tip! – Thomas Bindzus – 2014-04-24T18:08:35.503

62

Vim supports transparently editing files inside zip files. Just execute:

vim file.zip

and you will be shown a list of files inside zip archive. Choose the one you want to edit, change what you want, and exit with :x

If vim responds with:

Cannot make changes, 'modifiable' is off

.. just run :set modifiable or :set ma (source: https://stackoverflow.com/questions/5745506/vim-modifiable-is-off)

jesjimher

Posted 2013-09-19T17:58:10.040

Reputation: 770

1Same with emacs. – Mike – 2015-09-02T12:45:40.347

4This should be marked as the right answer – Martijn Burger – 2016-02-18T14:37:46.630

3life saver. really cool feature of vim, and quite unexpected too – Peter Perháč – 2016-08-09T08:15:04.387

2

By the way, default zip support in vim only allows editing one level ZIPs. If you need to edit ZIPs inside ZIPs, you should use this vim plugin.

– jesjimher – 2014-05-14T08:27:26.210

4

Short answer: NO.

If it's a wrapper, you are calling these commands. Anyway, the best I can think of is to open the file using file-roller, if you are in an X environment, that might work with a simple double click, depending on your setup. You can then double click on the compressed file to open it and then you can edit it:

$ file-roller b3.zip 

When you save your edited file, you should get this dialog:

You could make a script for this also, but that gets complicated if you have compressed archives that contain multiple files. Let me know if that's what you need and I might be able to cook something up.

enter image description here

terdon

Posted 2013-09-19T17:58:10.040

Reputation: 45 216

0

According to the man page for zip (online version for easy reference: http://linux.die.net/man/1/zip), the zip command has a -u flag which it describes as:

Replace (update) an existing entry in the zip archive only if it has been modified more recently than the version already in the zip archive.

Proctor

Posted 2013-09-19T17:58:10.040

Reputation: 9

0

Directory Opus 12 file manager will allow you to browse the Zip, then drag and drop the edited file from another folder into it and overwrite the file you want to edit, and it will do it all on the fly. Very easy

Technometry

Posted 2013-09-19T17:58:10.040

Reputation: 1

0

I wrote a Vim plugin that extends stock zip.vim to browse and edit nested zip files.

https://github.com/lbrayner/vim-rzip

lbrayner

Posted 2013-09-19T17:58:10.040

Reputation: 1

how do you install this on linux? – Pandrei – 2019-01-07T11:45:30.440

I added installation instructions to the README of the repository. Please check back.

– lbrayner – 2019-01-09T16:16:45.487

0

You can use standart KDE text editor for example:

  1. open archive in archive manager
  2. open text file in KDE gui editor
  3. save text file and system ask you to refresh archive - click yes
  4. don't forget about permission for archive and folder of archive (my favorite mistake)

tvorez

Posted 2013-09-19T17:58:10.040

Reputation: 1

Please fix formatting on your post. – davidbaumann – 2018-01-30T08:31:28.070

0

Short pedantic answer; no. If you think about compression, you're using redundancy to shorten the files inside, so any edit changes the whole file within the archive, possibly the archive.

If you're being less theoretical, more practical, more "I don't want to have to manually unzip/zip" there are tools that you can use. ark on Linux is one I've used. You could also mount the archive with fuse-zip, though that's probably more work than a temp file.

Rich Homolka

Posted 2013-09-19T17:58:10.040

Reputation: 27 121

don't know why someone gave -1. +1 for fuse-zip. – myrdd – 2019-02-11T17:33:08.763