So I need to remove a file from a .jar
or .war
file.
I was hoping there was something like jar -d myjar.jar file_I_donot_need.txt
But, right now the only way I can see of doing this from my Linux command line (without using WinRAR/Winzip or the Linux equivalent) is to
jar -xvf
and extract the complete .jar
file.jar
file using jar -cvf
Please tell me there is a shorter way.
zip -d file.jar unwanted_file.txt
jar is just a zip file after all. Definitely much faster than uncompressing/recompressing.