java - Extracting jar to specified directory -
i wanted extract 1 of jars specified directory using jar
command line utility.
if understand right -c
option should trick when try
jar xvf myjar.jar -c ./directorytoextractto
i getting usage information jar utility, doing wrong.
is thing want achievable jar
or need manually move jar , there invoke
jar xvf myjar.jar
it's better this.
navigate folder structure require
use command
jar -xvf 'path_to_ur_jar_file'
Comments
Post a Comment