code
stringlengths
1
1.96M
language
stringclasses
1 value
#!/bin/bash # This script creates a lvm snapshot, modify as required # # Input is always: # $1 = name of the snapshot, a random name with no spaces or non-printable chars, usually something like "duplicati-0102030011234567" # $2 = name of the device to create the snapshot for, this is the output of find-volume.sh, ...
Shell
#!/bin/bash # This script returns the device on which the volume is mounted # # Input is always: # $1 = name of the folder to locate the LVM device for # # The script MUST output a line with device="<path>", where path is the lvm id. # The script MUST output a line with mountpoint="<path>", where path is the device ...
Shell
#!/bin/bash # This script removes a lvm snapshot, modify as required # # Input is always: # $1 = name of the snapshot, a random name, same as given to create-lvm-snapshot, usually something like "duplicati-0102030011234567" # $2 = name of the device for which the snapshot was created, same as given to create-lvm-sn...
Shell
#!/bin/bash ############################################################################### # How to run scripts before or after backups ############################################################################### # Duplicati is able to run scripts before and after backups. This # functionality is available in th...
Shell
#!/bin/sh # Usage: ./duplicati-make-git-snapshot.sh [COMMIT] [DATE] # # to make a snapshot of the given tag/branch. Defaults to HEAD. # Point env var REF to a local duplicati repo to reduce clone time. if [ -z $2 ]; then DATE=`date +%Y%m%d` else DATE=$2 fi DIRNAME="duplicati-$DATE" echo REF ${REF:+--reference ...
Shell
#!/bin/sh # # DMG building script adopted from: # http://el-tramo.be/git/fancy-dmg/plain/Makefile # WC_DMG=wc.dmg WC_DIR=wc TEMPLATE_DMG=template.dmg SOURCE_FILES=Duplicati.app OUTPUT=Duplicati.dmg UNWANTED_FILES="sqlite-3.6.12.so sqlite3.dll linux-sqlite-readme.txt win-tools" SHOW_USAGE_ERROR= if [ "$#" -lt "1" ]...
Shell
#!/bin/sh # # This is a stub script that allows .apps to be relocatable on OSX but still # find the managed assembly. # # This is copied from the Mono macpack tool and modified to fit Duplicati # # The Mono Version Check is from here: # http://mjhutchinson.com/journal/2010/01/24/creating_mac_app_bundle_for_gtk_app #...
Shell
#!/bin/bash export LD_LIBRARY_PATH="/usr/lib/duplicati${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" export MONO_PATH=$MONO_PATH:/usr/lib/duplicati EXE_FILE=/usr/lib/duplicati/Duplicati.CommandLine.exe APP_NAME=Duplicati.CommandLine exec -a "$APP_NAME" mono "$EXE_FILE" "$@"
Shell
#!/bin/bash export LD_LIBRARY_PATH="/usr/lib/duplicati${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" export MONO_PATH=$MONO_PATH:/usr/lib/duplicati EXE_FILE=/usr/lib/duplicati/Duplicati.exe APP_NAME=Duplicati exec -a "$APP_NAME" mono "$EXE_FILE" "$@"
Shell
#!/bin/bash # Clean the package a bit UNWANTED_FILES="sqlite3.dll win-tools sqlite-3.6.12.so StartDuplicati.sh" #Validate input SHOW_USAGE_ERROR= if [ "$#" -lt "1" ]; then SHOW_USAGE_ERROR="No input file given" fi if [ "$#" -gt "2" ]; then SHOW_USAGE_ERROR="Too many arguments" fi if [ -n "$SHOW_USAGE_ERROR" ]; ...
Shell
#!/bin/sh set -e
Shell
#!/bin/sh set -e
Shell
cd Installer/Makefile make $@
Shell
#!/bin/bash set -e # fail early function die() { echo "Error: " $* echo echo "USage: $0 [dest]" exit 1 } shopt -s extglob # extended glob pattern function process() { SRC="$1" BASE="${SRC/.apk/}" DATE=`date +%Y%m%d` N=1 while /bin/true; do EXT=`python -c "print chr(96+$N)"` DEST="${BASE}_${DATE...
Shell
#!/bin/bash # # Copyright (C) 2007 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by ap...
Shell
#!/bin/bash # # Copyright (C) 2007 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by ap...
Shell
#!/bin/sh #http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Java14Development/03-JavaDeployment/JavaDeployment.html #http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools set -o verbose #echo onset +o verbose #echo off # Note: this must ...
Shell
#!/bin/sh #http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Java14Development/03-JavaDeployment/JavaDeployment.html set -o verbose #echo onset +o verbose #echo off # Note: this must run on a Mac myDir="`dirname "$0"`" cd $myDir APP_NAME="Android Design Preview" OUT_PATH=../out/mac OUT_ZIP="${AP...
Shell
#!/bin/sh # Copyright 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
Shell
#!/bin/sh # Copyright 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
Shell
#!/bin/sh # Copyright 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed ...
Shell
#/bin/sh java -jar QuickToDo.jar
Shell
#!/bin/bash # # Starts a basic web server on the port specified. # # ./serve.sh 3000 -> http://localhost:3000 # # Copyright 2012 Eric Bidelman <ebidel@gmail.com> port=$1 if [ $# -ne 1 ] then port=8000 fi open http://localhost:$port/template.html && python -m SimpleHTTPServer $port;
Shell
#!/usr/bin/env bash # Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. # For licensing, see LICENSE.html or http://ckeditor.com/license # Use this file to quickly run the sample under Linux. adl application.xml ../../
Shell
#!/usr/bin/env bash # Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. # For licensing, see LICENSE.html or http://ckeditor.com/license # Use this file to quickly run the sample under Linux. adl application.xml ../../
Shell
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
Shell
#!/bin/sh SCRIPTDIR=`dirname $0` cd $SCRIPTDIR/.. RED="0.5 0.5 0.5 0 0 0 0 0 0" GREEN="0 0 0 0.5 0.5 0.5 0 0 0" for x in btn_zoom_down_disabled.9 btn_zoom_down_disabled_focused.9 btn_zoom_down_normal.9 btn_zoom_up_disabled.9 btn_zoom_up_disabled_focused.9 btn_zoom_up_normal.9 btn_zoom_width_normal ; do conv...
Shell
#!/bin/sh SCRIPTDIR=`dirname $0` cd $SCRIPTDIR/.. for x in upfolder folder home recent1 recent2 recent3 recent4 recent5 ; do convert res/drawable-hdpi/$x.png -resize 66.7% res/drawable-mdpi/$x.png convert res/drawable-hdpi/$x.png -resize 50% res/drawable-ldpi/$x.png done
Shell
#!/bin/sh # make sure ndk-build is in path SCRIPTDIR=`dirname $0` MUPDF_FILE=mupdf-1.1-source.tar.gz MUPDF=mupdf-1.1-source FREETYPE=freetype-2.4.10 OPENJPEG=openjpeg-1.5.1 JBIG2DEC=jbig2dec-0.11 JPEGSRC=jpegsrc.v8d.tar.gz JPEGDIR=jpeg-8d cd $SCRIPTDIR/../deps tar xvf $FREETYPE.tar.bz2 tar xvf $JPEGSRC tar xvf $MUPDF...
Shell
#!/bin/bash # Copyright 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
Shell
#!/usr/bin/bash # # A wrapper script that run any Java application in unix/cygwin env. # # This script is assumed to be located in an application's "bin" directory. It will # auto resolve any symbolic link and always run in relative to this application # directory (which is one parent up from the script.) Therefore, t...
Shell
#!/bin/bash # # Copyright (c) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of # the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
Shell
#!/usr/bin/env bash ############################################################################## ## ## Gradle start up script for UN*X ## ############################################################################## # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to ...
Shell
#!/bin/sh # Don't forget chmod +x codereviewMac.sh to mac this script executable if [ -z $1 ]; then echo "Usage:" echo " codereview youremail@abc.com 22 24 \"Patchset comment\"" echo " Creates a new patch set for code review by comparing revision 22" echo " with revision 24. The patchset is sent on...
Shell
#!/bin/sh (cd $HOME ; [ ! -d env ] && virtualenv env) . $HOME/env/bin/activate pip install -r requirements.txt cp -Rf * $HOME/
Shell
#!/bin/sh pydoc -w pyvtk pyvtk.VtkData pyvtk.StructuredGrid pyvtk.StructuredPoints pyvtk.UnstructuredGrid pyvtk.RectilinearGrid pyvtk.PolyData pyvtk.PointData pyvtk.CellData pyvtk.Scalars pyvtk.ColorScalars pyvtk.LookupTable pyvtk.Vectors pyvtk.Normals pyvtk.TextureCoordinates pyvtk.Tensors pyvtk.Field
Shell
#!/bin/sh # Configure this (use absolute path) PHP=/usr/bin/php # php cli path DAEMON=/path/to/kalkun/scripts/daemon.php # daemon.php path # Execute $PHP $DAEMON
Shell
#!/bin/sh # Configure this (use absolute path) PHP=/usr/bin/php # php cli path DAEMON=/path/to/kalkun/scripts/daemon.php # daemon.php path # Execute $PHP $DAEMON
Shell
#! /bin/bash # Binary of the Texturepacker: TEXTUREPACKER_BINARY=/usr/local/bin/TexturePacker # Shared Spritesheet-Output-Definitions: SPRITESHEET_OUTPUT_DIRECTORY="../assets/gfx/spritesheets/" SPRITESHEET_OUTPUT_JAVAIDS_PACKAGE="org.anddev.andengine.examples.spritesheets" SPRITESHEET_OUTPUT_JAVAIDS_DIRECTORY="../src...
Shell
#!/bin/bash export API_PATH=/home/andrew/Documents/fieldml.api export LD_LIBRARY_PATH=$API_PATH:$API_PATH/core:$API_PATH/io:$LD_LIBRARY_PATH export TOPDIR=$(dirname $0) java -classpath $TOPDIR/target/classes:$TOPDIR/jars/kd.jar:/usr/share/java/scala-library.jar:$API_PATH/jni/fieldml.jar -Djava.library.path=$API_PATH "$...
Shell
#!/bin/sh # a2webd (version 0.2) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # # Usage: a2webd [start|status|reload|restart|stop] # # Feedback: <alex dot bilinsky at gmail dot com> # base name THIS=${0##*/} # check root privileges...
Shell
#!/bin/sh # a2webd (version 0.2) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # # Usage: a2webd [start|status|reload|restart|stop] # # Feedback: <alex dot bilinsky at gmail dot com> # base name THIS=${0##*/} # check root privileges...
Shell
#!/bin/sh # a2webd is daemon for a2web.cgi # Copyright (C) by Alex Bilinsky # Licensed under GNU GPL ver.3.0 # # Usage: # a2webd [start|status|reload|restart|stop] # # Feedback: # <alex dot bilinsky at gmail dot com> THIS=${0##*/} [ `id -u` -ne 0 ] && echo "$THIS must run with root privileges" && exit 1 PREFIX=/usr/l...
Shell
#!/bin/sh # a2webd is daemon for a2web.cgi # Copyright (C) by Alex Bilinsky # Licensed under GNU GPL ver.3.0 # # Usage: # a2webd [start|status|reload|restart|stop] # # Feedback: # <alex dot bilinsky at gmail dot com> THIS=${0##*/} [ `id -u` -ne 0 ] && echo "$THIS must run with root privileges" && exit 1 PREFIX=/usr/l...
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start &" >> $BOOTLOCAL
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start &" >> $BOOTLOCAL
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start &" >> $BOOTLOCAL
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start &" >> $BOOTLOCAL
Shell
#!/bin/sh # a2webd (version 0.5) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # Feedback: <alex dot bilinsky at gmail dot com> # Location: http://code.google.com/p/a2webd/ # # Usage as daemon: a2webd [start|status|reload|restart|sto...
Shell
#!/bin/sh # a2webd (version 0.5) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # Feedback: <alex dot bilinsky at gmail dot com> # Location: http://code.google.com/p/a2webd/ # # Usage as daemon: a2webd [start|status|reload|restart|sto...
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start" >> $BOOTLOCAL
Shell
#!/bin/sh BOOTLOCAL=/opt/bootlocal.sh A2WEBD=/usr/local/etc/init.d/a2webd grep -q $A2WEBD $BOOTLOCAL || echo "[ -x $A2WEBD ] && $A2WEBD start" >> $BOOTLOCAL
Shell
#!/bin/sh # a2webd (version 0.6) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # Feedback: <alex dot bilinsky at gmail dot com> # Location: http://code.google.com/p/a2webd/ # # Usage as daemon: a2webd [start|status|reload|restart|sto...
Shell
#!/bin/sh # a2webd (version 0.6) startup script for a2web.cgi # Copyright (C) by Alex Bilinsky (@ß№®M!$) AbNoRMiS # Licensed under GNU General Public License ver.3.0 # Feedback: <alex dot bilinsky at gmail dot com> # Location: http://code.google.com/p/a2webd/ # # Usage as daemon: a2webd [start|status|reload|restart|sto...
Shell
# Programmable completion for Plowshare commands under bash 3.x # Copy this file to /etc/bash_completion.d/plowshare have plowup && _plowup() { local cur prev arg COMPREPLY=() # fix colon separator issue. See item E13 at http://tiswww.case.edu/php/chet/bash/FAQ COMP_WORDBREAKS=${COMP_WORDBRE...
Shell
#!/sbin/bin/init = bashrc $ echo #!/bin/bash > build.sh $ chmod u+x /build.sh $ ./build.sh Bonjour tout le monde fi $ echo https://code.google.com/p/gerard-arveu-fontaine/adm $0 echo Bonjour $1 echo Comment ca va $2
Shell
#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ errstatus=0 for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift ...
Shell
# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 # # Th...
Shell
#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc. # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public Licen...
Shell
#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ errstatus=0 for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift ...
Shell
#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file sug...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU Gene...
Shell
#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without ...
Shell
#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc. # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public Licen...
Shell
#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without ...
Shell
#!/bin/bash -e OLD_DIR=`pwd` DIR=`dirname $0` cd $DIR echo "Note that unzipping is slow." L=en echo "Downloading from: http://dumps.wikimedia.org/${L}wiktionary/" WIKI=${L}wiktionary-20121208-pages-articles.xml curl --remote-name http://dumps.wikimedia.org/${L}wiktionary/20121208/${WIKI}.bz2 bunzip2 ${WIKI}.bz2 mv $...
Shell
java -classpath $CLASSPATH:./classes/:../utils/classes/ externalEditor.Message '11:showBalloon!123 "text" 123 F F T'
Shell
java -classpath $CLASSPATH:./classes/:../utils/classes/ externalEditor.Server
Shell
OLD_CP=$CLASSPATH CLASSPATH=$CLASSPATH:./classes/:../function/classes:../utils/classes/ CLASS_NAME=html.parse.HtmlParser OPTIONS="-Dhttp.proxyHost=proxy.dmz.pago.de -Dhttp.proxyPort=8000" java -cp ${CLASSPATH} $OPTIONS $CLASS_NAME $1
Shell
CLASSPATH=$JIKESPATH:../gradient/classes:../function/classes:./classes:../utils/classes jikes -classpath $CLASSPATH -d classes *.java parse/*.java
Shell
java -classpath $CLASSPATH:./classes generator.Class
Shell
banner `date` cd ../function #./compile.sh cd - jikes -nowarn -classpath $JIKESPATH:./classes:../function/classes/:../utils/classes/:../dot/classes -d classes *java #javac -nowarn -classpath $JIKESPATH:./classes:../function/classes/:../utils/classes/:../dot/classes -d classes *java
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/oracle_jdbc/jdbc816classes12.zip MAIN=sqlTools.DumpMetaData DRIVER=oracle.jdbc.driver.OracleDriver HOST=bambi DB=tstnet URL=jdbc:oracle:thin:@${HOST}:1521:${DB} #URL='jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=${HO...
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/postgres/postgresql-7.4.2/src/interfaces/jdbc/jars/postgresql.jar #CLASSPATH=./classes:../function/classes/:../utils/classes/:usr/local/pgsql/share/java/postgresql.jar echo $CLASSPATH cmd="java -cp $CLASSPATH sqlTools.DumpMetaDataGUI -driv...
Shell
banner `date` javac -classpath $JIKESPATH:../function/classes/:../utils/classes/:../dot/classes -d classes *java functions/*java collection/*java dot/*java
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/postgres/postgresql-7.4.2/src/interfaces/jdbc/jars/postgresql.jar #CLASSPATH=./classes:../function/classes/:../utils/classes/:usr/local/pgsql/share/java/postgresql.jar echo $CLASSPATH cmd="java -cp $CLASSPATH sqlTools.DumpMetaData -driver o...
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:../dot/classes/:/home/tim/tools/oracle_jdbc/ojdbc14.jar MAIN=sqlTools.OracleLoader DRIVER=oracle.jdbc.driver.OracleDriver #HOST=eric.devel.pago.de #HOST=bambi HOST=wendy.devel.pago.de DB=devnet #DB=tstnet URL=jdbc:oracle:thin:@${HOST}:1521:${DB} #URL='jdbc:ora...
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/mysql/mysql-connector-java-3.0.11-stable/mysql-connector-java-3.0.11-stable-bin.jar #CLASSPATH=./classes:../function/classes/:../utils/classes/:usr/local/pgsql/share/java/postgresql.jar echo $CLASSPATH cmd="java -cp $CLASSPATH sqlTools.DumpM...
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/AtosGUImod/jar/weblogic61sp4.jar MAIN=sqlTools.DumpMetaData #DRIVER=oracle.jdbc.driver.OracleDriver #HOST=eric.devel.pago.de #DB=devnet #URL=jdbc:oracle:thin:@${HOST}:1521:${DB} #USER=twbrokat #PASSWD=twdev #DATASOURCE_NAME=CustomerTxDataSource ...
Shell
banner `date` cd ../function #./compile.sh cd - jikes -nowarn -classpath $JIKESPATH:./classes:../function/classes/:../utils/classes/:../dot/classes:../generator/classes -d classes *java functions/*java collection/*java dot/*java orm/*java orm/generator/*.java sample/*.java #javac -nowarn -classpath $JIKESPATH:./classe...
Shell
javadoc -private -d jdoc/ orm/*.java
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/mysql/mysql-connector-java-3.0.11-stable/mysql-connector-java-3.0.11-stable-bin.jar #CLASSPATH=./classes:../function/classes/:../utils/classes/:usr/local/pgsql/share/java/postgresql.jar echo $CLASSPATH cmd="java -cp $CLASSPATH sqlTools.DumpM...
Shell
CLASSPATH=$JIKESPATH:../html/classes:../function/classes jikes -classpath $CLASSPATH -d classes *.java
Shell
#!/bin/sh exec java PID $$ echo 'hallo'
Shell
#!/bin/sh exec java PID $$ echo 'hallo'
Shell
banner `date` jikes -d classes -classpath $JIKESPATH:../utils/classes *.java
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/oracle_jdbc/jdbc816classes12.zip MAIN=sqlTools.DumpMetaData DRIVER=oracle.jdbc.driver.OracleDriver HOST=bambi DB=tstnet URL=jdbc:oracle:thin:@${HOST}:1521:${DB} #URL='jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=${HO...
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/AtosGUImod/jar/weblogic61sp4.jar MAIN=jndi.DumpContext #DRIVER=oracle.jdbc.driver.OracleDriver #HOST=eric.devel.pago.de #DB=devnet #URL=jdbc:oracle:thin:@${HOST}:1521:${DB} #USER=twbrokat #PASSWD=twdev DATASOURCE_NAME=CustomerTxDataSource #DATAS...
Shell
banner `date` JIKESPATH=$JIKESPATH:./classes:../function/classes/:../utils/classes/:../dot/classes:../sql/classes for jar in `ls /home/tim/tools/AtosGUI/jar/*.jar`; do JIKESPATH=$JIKESPATH:$jar done echo $JIKESPATH jikes -nowarn -classpath $JIKESPATH -d classes *java
Shell
CLASSPATH=./classes:../function/classes/:../utils/classes/:/home/tim/tools/AtosGUImod/jar/weblogic61sp4.jar for jar in `ls /home/tim/tools/AtosGUI/jar/*.jar`; do CLASSPATH=$CLASSPATH:$jar done echo $CLASSPATH MAIN=jndi.WlpGuiHack #DRIVER=oracle.jdbc.driver.OracleDriver #HOST=eric.devel.pago.de #DB=devnet #URL=jdbc:ora...
Shell
jikes -d classes -cp $JIKESPATH:../html/:../function/ *.java
Shell
jikes -classpath $JIKESPATH:../function/classes -d classes *.java
Shell
#!/bin/bash absolute_dir="$( cd "$( dirname "$0" )" && pwd )" export LD_LIBRARY_PATH=$absolute_dir/lib/linux-`uname -m` jarpath="$absolute_dir/jar/aster.jar" android_framework_dir=`grep framework $absolute_dir/../*.properties | cut -d '=' -f 2` framework=$absolute_dir/jar:$android_framework_dir debug_parameters="" ...
Shell
#!/bin/bash absolute_dir="$( cd "$( dirname "$0" )" && pwd )" export LD_LIBRARY_PATH=$absolute_dir/lib/linux-`uname -m` jarpath="$absolute_dir/jar/wookieerunner.jar" android_framework_dir=`grep framework $absolute_dir/../*.properties | cut -d '=' -f 2` framework=$absolute_dir/jar:$android_framework_dir exec java -Xm...
Shell
#!/bin/bash # # Copyright (c) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of # the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
Shell
#!/bin/bash # Copyright 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
Shell
#!/bin/bash # Copyright 2012 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # Run this script in your app root directory, the one containing # the app.yaml file. Then point appcfg.py or dev_appserver.py # at './tmp' instead o...
Shell
#!/bin/bash A2X_BIN_DIR=$(readlink -f $(dirname $0)/bin) if [ $# = "1" -a $1 = "clean" ] then COMMAND="clean" else COMMAND= echo "Dependencies: SDL, SDL_mixer, libpng" echo "Add $A2X_BIN_DIR to \$PATH" fi cd $A2X_BIN_DIR/make/a2x make $COMMAND cd $A2X_BIN_DIR/tools/gfx make $COMMAND cd $A2X_BIN_DIR...
Shell
# Programmable completion for Plowshare commands under bash 3.x # Copy this file to /etc/bash_completion.d/plowshare have plowup && _plowup() { local cur prev arg COMPREPLY=() # fix colon separator issue. See item E13 at http://tiswww.case.edu/php/chet/bash/FAQ COMP_WORDBREAKS=${COMP_WORDBRE...
Shell
#! /bin/ sh make Makefile set -uset -esvn admin create svn-mirror echo "#!/bin/sh" > svn-mirror/hooks/pre-revprop-change echo "exit 0" >> svn-mirror/hooks/pre-revprop-change chmod +x svn-mirror/hooks/pre-revprop-changes vnsync init file://`pwd`/svn-mirror http://$1.googlecode.com/svn svnsync sync file://`pwd`/svn-mirro...
Shell