Tagged Questions
3
votes
4answers
72 views
unzip file, which directory was created?
Objective:
After expanding archive a.zip by using command unzip on Ubuntu 12.10, assign the name of the folder a.zip expanded to to bash variable v.
a.zip is assumed and guaranteed to expand to a ...
2
votes
1answer
165 views
unzip two different kind of file extensions
Note here, .zip and .jar is just an example, my file extensions are different. Suppose I have a directory which can contain number of zip files
a.zip b.zip c.zip
AND/OR
z.jar x.jar y.jar
along ...
2
votes
2answers
196 views
Unzip to location
I am using unzip through putty and it works ok.
However, using the same command through a .NET C# SSH library (Renci.SshNet) gives different results.
SshClient s = new SshClient("ssh_host", ...
3
votes
2answers
328 views
Search for files with a specific size inside recursive zipped archives
I have a folder with several files. These files are either .xml or .zip files.
These .zip files contain .xml and/or .zip files. These .zip contains also .xml or .zip, and so on... until we finally ...
6
votes
1answer
6k views
How do you extract a single folder from a large tar.gz archive?
I am using this command on a 5GB archive
tar -zxvf archive.tar.gz /folder/in/archive
is this the correct way to do this? It seems to be taking forever with no command line output...
4
votes
3answers
2k views
Is it possible in unix to search inside zip files
I have 100s of directories and within those I have a few zip files. Now there are images named abc.jpg in those zip files. The zip files may be in any folder or in any subfolder so its difficult to ...