Search Results

Search: Posts Made By: Scrutinizer
12,348
Posted By Scrutinizer
Indeed, that would only work if the files had...
Indeed, that would only work if the files had already been deflated so that was not very helpful :)

Try this instead:
find . -name '*.jar' -exec bash -c '\
result=$(zipgrep -HIli...
12,348
Posted By Scrutinizer
Try: find . -name '*.jar' -exec jar tf {} \; |...
Try:
find . -name '*.jar' -exec jar tf {} \; | grep -v '/$' | xargs grep -hil 'org/openqa/selenium/WebDriver'
12,348
Posted By Scrutinizer
jar tvf can only take one archive as parameter,...
jar tvf can only take one archive as parameter, so try:
find . -name '*.jar' | xargs -n 1 jar tvf
This will break if there are spaces in directory or file names

You could also try:
find ....
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 05:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy