i know how to find file with find
# find /root/directory/to/search -name 'filename.*'
but, how to look also into archives, as file can be ziped inside...
thanx
|
|
i know how to find file with find
but, how to look also into archives, as file can be ziped inside... thanx |
||
|
|
|
|
If your archive is some sort of zipped tarball, you can use the feature of tar that searches for a particular file and prints only that filename. If your tar supports wildcards, you can use those too. For example, on my system:
prints:
although there are many more files in the tarball, but only one matching the pattern "*tomcat*". This way you don't have to use grep. You can combine this with find and gunzip or whatever other zipping utility you've used. |
||
|
|
|
|
I defined a function (zsh, minor changes -> BaSh)
You can
|
||||||
|
|
|
|
||
|
|