Tagged Questions
2
votes
2answers
71 views
Add a file to a different path in a zip file
I have a file that placed in the following directory:
folder_A/another_folder_A/file_to_add.xml
Now, what I want to do is simply add the file to a folder in an existing zip archive.
For example ...
1
vote
1answer
182 views
How can I view files in zip using putty?
I want to view file list in zip archive using putty without unzip the archive.
Is it possible?
2
votes
1answer
195 views
referring to files inside a jar or zip files in Linux
I am wondering if I can refer to files inside JAR or ZIP files using URLs. I mean, without using a tool (such as the Java Jar utility) but just at the operative system level.
For example, if I have a ...
9
votes
3answers
11k views
How to unzip a multipart (spanned) ZIP on Linux?
I need to upload a 400mb file to my web server, but I'm limited to 200mb uploads. My host suggested I use a spanned archive, which I've never done on Linux.
I created a test in its own folder, ...
6
votes
2answers
280 views
Remove accidentally extracted files [duplicate]
Possible Duplicate:
How to de-unzip, de-tar -xvf — de-unarchive in a messy folder?
This is a pretty annoying occurrence. Sometimes, I download an archive (tar.gz, tar.bz2, zip, rar, ...
9
votes
5answers
953 views
How to de-unzip, de-tar -xvf — de-unarchive in a messy folder?
Usually, I unarchive things by $ mkdir newFolder; $ mv *.zip newFolder; $ cd newFolder; $unzip *.zip but sometimes I get lazy and just do in an arbitrary folder $ unzip *.zip so time-to-time messing ...
