403Webshell
Server IP : 134.236.49.22  /  Your IP : 216.73.216.114
Web Server : Apache/2.2.15 (Fedora)
System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/bin/rebuild-jar-repository
#!/bin/sh
#
# Small script to rebuild a jar repository depending on the JVM used
#
# JPackage Project <http://www.jpackage.org/>
#
# $Id: rebuild-jar-repository,v 1.3 2006/03/29 19:45:09 jasonc Exp $

# Import java functions
[ -r /usr/share/java-utils/java-functions ] \
 &&  . /usr/share/java-utils/java-functions || exit 1

# Prints help message
usage() {
/bin/cat >&2 << EOF_USAGE
Usage: $0 [<linktype>] <directory>
                                                                                                                              
With:
    linktype:
              -s, --soft, --symbolic   create symbolic links (default)
              -h, --hard               create hard links
              -c, --copy               copy files
    directory: name of an existing directory where existing links will be
               recreated

EOF_USAGE
exit 2
}

[ "$#" -lt "1" ] && usage

unset repository
unset args

while [ $# -gt 0 -a -z "$repository" ] ; do
   case "$1" in
      -h|--hard|-s|--soft|--symbolic|-c|--copy)
         args=$1
         ;;
      --|-)
         args="$args --"
         break
         ;;
      *)
         repository=$1
         if ! [ -d "$repository" -a -w "$repository" ] ; then
            echo "$0: error: $1 must be a writable directory" >&2
            exit 7
         fi
   esac
   shift
done

args="$args $@"

set_javacmd || exit 3

check_java_env || exit 4

set_jvm_dirs || exit 5

extension_list=$(find $repository -name '\[*\]*.jar' -not -type d | \
sed 's+\]\[+/+g' | sed 's+.*\[++g' | sed 's+\].*++g' | sort | uniq)

rm -f $(find $repository -name '\[*\]*.jar' -not -type d)

link_jar_repository $repository $args $extension_list

if [ "$?" = 0 ] ; then
    exit 0
else
    echo "$0: error: Some detected jars were not found for this jvm" >&2
    exit 6
fi

Youez - 2016 - github.com/yon3zu
LinuXploit