Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gjar(1) [suse man page]

GJAR(1) 								GNU								   GJAR(1)

NAME
gjar - - Archive tool for Java archives SYNOPSIS
gjar -ctxui [OPTIONS] jar-file [-C DIR FILE] FILE... DESCRIPTION
gjar is an implementation of Sun's jar utility that comes with the JDK. If any file is a directory then it is processed recursively. The manifest file name and the archive file name needs to be specified in the same order the -m and -f flags are specified. OPTIONS
Operation mode: -c Create new archive. -t List table of contents for archive. -x Extract named (or all) files from archive. -u Update existing archive. -i FILE Compute archive index. Operation modifiers: -f FILE Specify archive file name. -0 Store only; use no ZIP compression. -v Generate verbose output on standard output. -M Do not create a manifest file for the entries. -m manifest Include manifest information from specified manifest file. File name selection: -C DIR FILE Change to the DIR and include the following FILE. -@ Read the names of the files to add to the archive from stdin. This option is supported only in combination with -c or -u. Non standard option added in the GCC version. Standard options: -help Print help text, then exit. -version Print version number, then exit. -JOPTION Pass argument to the Java runtime. BUGS
SEE ALSO
java(1), ... AUTHOR
0.98 2010-07-05 GJAR(1)

Check Out this Related Man Page

extcheck(1)						      General Commands Manual						       extcheck(1)

NAME
extcheck - jar conflict detection utility SYNOPSIS
extcheck [ -verbose ] [ -Joption ] targetfile.jar DESCRIPTION
The extcheck utility checks a specified jar file for title and version conflicts with any extensions installed in the JDK software. Before installing an extension, you can use this utility to see if the same or a more recent version of the extension is already installed. The extcheck utility compares the Specification-title and Specification-version headers in the manifest of targetfile.jar file against the corresponding headers in all Jar files currently installed in the extension directory. (The extension directory is jre/lib/ext by default.) The extcheck utility compares version numbers in the same way as the method java.lang.Package.isCompatibleWith. If no conflict is detected, the return code is 0. If the manifest of any jar file in the extensions directory has the same Specification-title and the same or a newer Specification-version number, a non-zero error code is returned. A non-zero error code is also returned if targetfile.jar does not have the Specification-title or Specification-version attributes in its manifest. OPTIONS
The following options are supported: -verbose Lists jar files in the extension directory as they are checked. Additionally, manifest attributes of the target jar file and any conflicting jar files are also reported. -Joption Pass option to the Java virtual machine, where option is one of the options described on the man page for the java applica- tion launcher, java(1). For example, -J-Xms48m sets the startup memory to 48 megabytes. SEE ALSO
jar(1) 13 June 2000 extcheck(1)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Jar App (GUI) Execution

Hi, Just wondering any ideas of the possible cause of an exception error on Security reading or accessing the META-INF/Zigbert (contianed with the manifest file), when trying to execute the jar application. e.g. we get the message: Exception in thread "main" java.lang.SecurityException: cannot... (1 Reply)
Discussion started by: Breen
1 Replies

2. UNIX for Dummies Questions & Answers

create a archive of old file

i need a script which will create a archive of the files older than 10 days........ (2 Replies)
Discussion started by: jayaramanit
2 Replies

3. Filesystems, Disks and Memory

(core dumped) | gjar

hello, when i make gcc 4.4.2 i get this message find gnu java javax org sun -name .svn -prune -o -name '*.class' -print | \ gjar -cfM@ $here/libgcj-4.4.2.jar /bin/sh: line 2: 32730 Done find gnu java javax org sun -name .svn -prune -o -name '*.class'... (2 Replies)
Discussion started by: aleppos
2 Replies

4. UNIX for Advanced & Expert Users

File count limit in jar ?

Hello everyone, I am using jar to consolidate a large number of files for transfer, about 2500. The jar command seems to work fine and it says ....adding.... files while it is building the archive. If I capture the messages to a log the log has 2500 lines each of them says I file was addedd... (2 Replies)
Discussion started by: gio001
2 Replies

5. Shell Programming and Scripting

Need Help with a Data Extract script

hi, i'am trying to write a shell program which takes a data element from one file(var/tmp/usr1/pools)and search that data element in a zipped file in archive location/usr01/archive/PSta*.Z). cat var/tmp/usr1/pools FC5173 FI5178 BE5221 FE5229 ST1604 ls /usr01/archive/PSta*.Z... (14 Replies)
Discussion started by: kmr023
14 Replies

6. Shell Programming and Scripting

Archive files which has more than one row

Hello Guys Please treat this as urgent . Can you please kindly help me to know how to archive files in a directory which has more than one row Thanks for your time and help!! (3 Replies)
Discussion started by: Pratik4891
3 Replies

7. Shell Programming and Scripting

How to join 2 text files using bash scripting?

Hi Guys, I want to combine 2 files and and put together in 1 file . See below desired output. Any help will be much appreciated. FILE AX 2134 101L 12345.00 22222.00 1 10 X 2134 101L 12345.00 22222.00 11 20 X 2134 101L 12345.00 22222.00 21 30 X 2134 111L 77777.00 ... (3 Replies)
Discussion started by: H.R
3 Replies

8. UNIX for Beginners Questions & Answers

Getting the version from jar file

Hi, I am trying to retrieve the "Implementation version" from one of the .jar file The command which tried is as below. find /usr/local/platform -name "platform.jar" -exec zipgrep "Implementation-Version:" '{}' \;|awk -F ': ' '{print $2}'I am able to get the version as below 2.9.0-29But... (2 Replies)
Discussion started by: nextStep
2 Replies