Sha256: 58547a4b8a61a69e0a20270f8cbfc333ab153e1bc29e52baff9d0ac44fd5f4bd
Contents?: true
Size: 869 Bytes
Versions: 1
Compression:
Stored size: 869 Bytes
Contents
#!/bin/sh # # Copyright 2004-2008 Crypto-Pro. All rights reserved. # # This is proprietary information of # Crypto-Pro company. # # Any part of this file can not be copied, # corrected, translated into other languages, # localized or modified by any means, # compiled, transferred over a network from or to # any computer system without preliminary # agreement with Crypto-Pro company # # --------------------------------------------------- # # This script starts CryptoPro JCP v.1.0 control panel # # Usage: # ControlPane.sh <path_to_JRE> # # Example: # ControlPane.sh /usr/java/jdk1.5.0_04/jre # if [ -z "$1" ]; then printf "USAGE:\n" printf " ControlPane.sh path_to_JRE\n" exit 1 fi JREDIR=$1 JAVACMD="$JREDIR/bin/java" [ -x "$JAVACMD" ] || { printf "File not found: $JAVACMD\n" exit 1 } "$JAVACMD" ru.CryptoPro.JCP.ControlPane.MainControlPane
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
java2ruby-xmldsig-0.2 | lib/jcp.1.0.49/lib/ControlPane.sh |