> zip -d target.jar `jar -tf compare.jar | grep \.class`
Nice command :-)
But the
`jar -tf compare.jar | grep \.class`
is evaluated by the shell to get a fileset which is passed to
the zip command.So I think you have to split that command in two. Jan
