code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
for arg in "$@"
do
case $arg in
*=*) optarg=`expr "X$arg" : '[^=]*=\(.*\)'` ;;
esac
case "$arg" in
--name=*)
name=$optarg
;;
--id=*)
id=$optarg
;;
--version=*)
version=$optarg
;;
--bundle-name=*)
bundleName=$optarg
;;
--exec=*)
exec=$optarg
;;
--vendor=*)
vendor=$optarg
... | Shell |
for arg in "$@"
do
case $arg in
*=*) optarg=`expr "X$arg" : '[^=]*=\(.*\)'` ;;
esac
case "$arg" in
--name=*)
name=$optarg
;;
--id=*)
id=$optarg
;;
--version=*)
version=$optarg
;;
--version-code=*)
versionCode=$optarg
;;
--vendor=*)
vendor=$optarg
;;
--min-sdk=*)
minSDK=$op... | Shell |
for arg in "$@"
do
case $arg in
*=*) optarg=`expr "X$arg" : '[^=]*=\(.*\)'` ;;
esac
case "$arg" in
--name=*)
name=$optarg
;;
--id=*)
id=$optarg
;;
--version=*)
version=$optarg
;;
--bundle-name=*)
bundleName=$optarg
;;
--exec=*)
exec=$optarg
;;
--vendor=*)
vendor=$optarg
... | Shell |
for arg in "$@"
do
case $arg in
*=*) optarg=`expr "X$arg" : '[^=]*=\(.*\)'` ;;
esac
#echo $arg
case "$arg" in
--name=*)
name=$optarg
;;
--id=*)
id=$optarg
;;
--version=*)
version=$optarg
;;
--vendor=*)
vendor=$optarg
;;
--exec=*)
exec=$optarg
;;
--required-memory=*)
req... | Shell |
NEW=
for def in $2; do
NEW="${NEW}#define ${def/=/ }
"
done
for inc in $3; do
NEW="${NEW}#include $inc
"
done
for inc in $4; do
NEW="${NEW}#include_next $inc
"
done
if [ -f $1 ]; then
OLD=`cat $1`"
"
#echo -n "$NEW"
#echo -n "$OLD"
if [[ "$NEW" == "$OLD" ]]; then
exit 0
fi
fi
#echo "writing config to $1"
... | Shell |
#!/bin/bash
dir=$(dirname "$0")
exec "${dir}"/saturnemu "$@"
| Shell |
#!/bin/bash
dir=$(dirname "$0")
exec "${dir}"/neoemu "$@"
| Shell |
#!/bin/bash
dir=$(dirname "$0")
exec "${dir}"/s9xp "$@"
| Shell |
#!/bin/bash
dir=$(dirname "$0")
exec "${dir}"/s9xp "$@"
| Shell |
g++-4.5 -std=gnu++0x -I../../../.. -o generate generate.cpp
| Shell |
#!/bin/bash
dir=$(dirname "$0")
exec "${dir}"/ngpemu "$@"
| Shell |
#!/bin/bash
# Simple bash script to start and stop a service
# Works without access to /var/run/ or ps and pidof commands
#
# Date:: Wed, 09 Jan 2008
# Author:: Sebastian Tschan, https://blueimp.net
# License:: GNU Affero General Public License
SERVICE_TITLE=Service
SERVICE_BASENAME=${0##*/}
SERVICE_DIR=... | Shell |
#!/bin/bash
# Simple bash script to start and stop a service
# Works without access to /var/run/ or ps and pidof commands
#
# Date:: Wed, 09 Jan 2008
# Author:: Sebastian Tschan, https://blueimp.net
# License:: GNU Affero General Public License
SERVICE_TITLE=Service
SERVICE_BASENAME=${0##*/}
SERVICE_DIR=... | Shell |
<?php
/**
* @file
* This script runs Drupal tests from command line.
*/
define('SIMPLETEST_SCRIPT_COLOR_PASS', 32); // Green.
define('SIMPLETEST_SCRIPT_COLOR_FAIL', 31); // Red.
define('SIMPLETEST_SCRIPT_COLOR_EXCEPTION', 33); // Brown.
// Set defaults and get overrides.
list($args, $count) = simpletest_script_par... | Shell |
#!/bin/sh
/usr/bin/lynx -source http://example.com/cron.php > /dev/null 2>&1
| Shell |
#!/bin/sh
curl --silent --compressed http://example.com/cron.php
| Shell |
#!/bin/sh
find . -name "*~" -type f | xargs rm -f
find . -name ".#*" -type f | xargs rm -f
find . -name "*.rej" -type f | xargs rm -f
find . -name "*.orig" -type f | xargs rm -f
find . -name "DEADJOE" -type f | xargs rm -f
find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".t... | Shell |
#!/bin/sh
/usr/bin/lynx -source http://example.com/cron.php > /dev/null 2>&1
| Shell |
#!/bin/sh
find . -name "*~" -type f | xargs rm -f
find . -name ".#*" -type f | xargs rm -f
find . -name "*.rej" -type f | xargs rm -f
find . -name "*.orig" -type f | xargs rm -f
find . -name "DEADJOE" -type f | xargs rm -f
find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".t... | Shell |
#!/bin/sh
curl --silent --compressed http://example.com/cron.php
| Shell |
#!/bin/bash
# Run this from the terminal inside a drupal root folder
# i.e. DRUPAL_ROOT_DIR/sites/all/modules/contrib/ctools/tests/ctools.drush.sh
function stamp {
echo ==============
echo timestamp : `date`
echo ==============
}
DRUPAL_ROOT=`drush dd`
MODULE_DIR="$DRUPAL_ROOT/sites/all/modules"
MODULE_NAME="c... | Shell |
#!/bin/bash
# Run this from the terminal inside a drupal root folder
# i.e. DRUPAL_ROOT_DIR/sites/all/modules/contrib/ctools/tests/ctools.drush.sh
function stamp {
echo ==============
echo timestamp : `date`
echo ==============
}
DRUPAL_ROOT=`drush dd`
MODULE_DIR="$DRUPAL_ROOT/sites/all/modules"
MODULE_NAME="c... | Shell |
#!/bin/sh
# This script is used by the MAINTAINER to make copies of the stylesheets for
# the base Zen theme from the stylesheets in the STARTERKIT.
rm *.css;
for FILENAME in ../../STARTERKIT/css/*.css; do
cp ../../STARTERKIT/css/$FILENAME .;
done
# Don't need the core reference.
rm drupal7-reference.css;
rm ../i... | Shell |
#!/bin/sh
# This script is used by the MAINTAINER to make copies of the stylesheets for
# the base Zen theme from the stylesheets in the STARTERKIT.
rm *.css;
for FILENAME in ../../STARTERKIT/css/*.css; do
cp ../../STARTERKIT/css/$FILENAME .;
done
# Don't need the core reference.
rm drupal7-reference.css;
rm ../i... | Shell |
#!/bin/bash
./qgraf
cat india.h
rm india.h
| Shell |
#!/bin/bash
./qgraf
cat india.h
rm india.h
| 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
# 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
#
# 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
# generate a list obj files
echo -n 'OBJS = ' > /tmp/tcreatmk00000001
for cppfile in *.cpp
do
echo -n ${cppfile%.cpp}.o ' ' >> /tmp/tcreatmk00000001
done
# generate a list of programs, one for each cpp file in the current director
echo >> /tmp/tcreatmk00000001
echo -n 'PROGRAMS = ' >> /tmp/tcreatmk000000... | Shell |
#!/bin/sh
# generate a list obj files
echo -n 'OBJS = ' > /tmp/tcreatmk00000001
for cppfile in *.cpp
do
echo -n ${cppfile%.cpp}.o ' ' >> /tmp/tcreatmk00000001
done
# generate a list of programs, one for each cpp file in the current director
echo >> /tmp/tcreatmk00000001
echo -n 'PROGRAMS = ' >> /tmp/tcreatmk000000... | Shell |
#!/bin/sh
# generate a list obj files
echo -n 'OBJS = ' > /tmp/tcreatmk00000001
for cppfile in *.cpp
do
echo -n ${cppfile%.cpp}.o ' ' >> /tmp/tcreatmk00000001
done
# generate a list of programs, one for each cpp file in the current director
echo >> /tmp/tcreatmk00000001
echo -n 'PROGRAMS = ' >> /tmp/tcreatmk000000... | Shell |
#!/bin/sh
# generate a list obj files
echo -n 'OBJS = ' > /tmp/tcreatmk00000001
for cppfile in *.cpp
do
echo -n ${cppfile%.cpp}.o ' ' >> /tmp/tcreatmk00000001
done
# generate a list of programs, one for each cpp file in the current director
echo >> /tmp/tcreatmk00000001
echo -n 'PROGRAMS = ' >> /tmp/tcreatmk000000... | Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The MIT License
# R... | Shell |
#!/bin/bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright 2005-2011, Cake Software Foundation, Inc.
#
# Licensed under The MIT License
# R... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
#
# Licen... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
#
# Licen... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
#
# Licen... | Shell |
#!/usr/bin/env bash
################################################################################
#
# Bake is a shell script for running CakePHP bake script
# PHP 5
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
#
# Licen... | Shell |
#!/bin/bash
# Scripts in the tools/ directory should source this file with the line:
# pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
export TOOLS_DIR=$(pwd)
export PROJECT_DIR=$(dirname $TOOLS_DIR)
export APP_DIR=$PROJECT_DIR/app
export TESTS_DIR=$PROJECT_DIR/tests
for dir in \
"$APPENG... | 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 to... | Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
$PYTHON $TOOLS_DIR/validate_merge.py "$@"
| Shell |
#!/bin/bash
# Creates a code review on codereview.appspot.com for the current branch.
# The posted patch is a diff from the default head to this branch's head.
#
# This script supports the following workflow:
# 1. Create a named branch and make your changes there.
# 2. Merge changes (if any) from the default... | Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
export REMOTE_API_RC="from model import *"$'\n'"from setup_pf import *"
$PYTHON $TOOLS_DIR/remote_api.py "$@"
| Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
$PYTHON $TOOLS_DIR/merge_messages.py "$@"
| Shell |
#!/bin/bash
DEFAULT_DAYS=90
function usage() {
echo "Usage: $0 [-r <rev>] [-d <days>] [-l] [-h]"
echo
echo " Interactively go through all the heads that have no children in"
echo " history DAG and that are at least $DEFAULT_DAYS days old, and "
echo " no-op merge them to the default branch."
echo
ech... | Shell |
#!/bin/bash
# To run all tests:
#
# tools/unit_tests
#
# To run just the tests in tests/test_model.py and tests/test_indexing.py:
#
# tools/unit_tests test_model test_indexing
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
echo
echo "--- Running unit tests"
TZ=UTC $PYTHON $TESTS_DIR/... | Shell |
#!/bin/bash
# Copyright 2011 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 to in w... | Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
find $PROJECT_DIR -name '*.pyc' -exec rm '{}' ';'
find $PROJECT_DIR -name '*.orig' -exec rm '{}' ';'
| Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
if [ "$1" == "run" ]; then
shift
# Look through the arguments for an application directory.
for arg in "$@"; do
case "$arg" in
(--datastore_path*) datastore_path="$arg";;
(-*) true;;
... | Shell |
#!/bin/sh
# use pylint to check the args.
# requires installing pylint http://www.logilab.org/project/pylint
# short form: easy_install pylint (may require root)
LINT=$(which pylint)
REPORTS="no"
DEPRECATED=regsub,string,TERMIOS,Bastion,rexec
if [ -z "$LINT" ]; then
echo "pylint not found, please install."
exit ... | Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
$PYTHON $TOOLS_DIR/find_missing_translations.py "$@"
| Shell |
#!/bin/bash
pushd "$(dirname $0)" >/dev/null && source common.sh && popd >/dev/null
$PYTHON $TOOLS_DIR/update_messages.py "$@"
| Shell |
#!/bin/bash
# Starts up an appserver and runs end-to-end tests against it.
#
# Use -k to select particular test classes or methods by a substring match:
# tools/server_tests -k ConfigTests
# tools/server_tests -k test_delete_and_restore
#
# Specify -v to show the name of each test as it runs (rather than just... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
### create disk image ###############################################
echo "Creating disk image"
imagedir="/tmp/Aerolith.$$"
mkdir $imagedir
cp -R Aerolith.app $imagedir
# TODO: copy over additional files, if any
hdiutil create -ov -srcfolder $imagedir -format UDCO -volname "Aerolith" "Aerolith.dmg"
hdiuti... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
### create disk image ###############################################
echo "Creating disk image"
imagedir="/tmp/Aerolith.$$"
mkdir $imagedir
cp -R Aerolith.app $imagedir
# TODO: copy over additional files, if any
hdiutil create -ov -srcfolder $imagedir -format UDCO -volname "Aerolith" "Aerolith.dmg"
hdiuti... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
### create disk image ###############################################
echo "Creating disk image"
imagedir="/tmp/Aerolith.$$"
mkdir $imagedir
cp -R Aerolith.app $imagedir
# TODO: copy over additional files, if any
hdiutil create -ov -srcfolder $imagedir -format UDCO -volname "Aerolith" "Aerolith.dmg"
hdiuti... | Shell |
#!/bin/sh
# Copyright 2007 David Johnson
# The author grants unlimited permission to
# copy, distribute and modify this script
# APPNAME=MyApp
### get system configuration ########################################
# as long as we can find qmake, we don't need QTDIR
FWPATH=`qmake -query QT_INSTALL_LIBS`
if [ ! -d $FWP... | Shell |
#!/bin/sh
### create disk image ###############################################
echo "Creating disk image"
imagedir="/tmp/Aerolith.$$"
mkdir $imagedir
cp -R Aerolith.app $imagedir
# TODO: copy over additional files, if any
hdiutil create -ov -srcfolder $imagedir -format UDCO -volname "Aerolith" "Aerolith.dmg"
hdiuti... | Shell |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=-1,0,0,1 encoding=single
| Shell |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=-1,0,0,1 encoding=double
| Shell |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=0.99,0.99,1.01,1.01
| Shell |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=0.1,0.2,0.3,0.4 map-start-position=0.15,0.25 map-start-zoom=16 preferred-language=en comment=testcomment
| Shell |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=0,0,0.08,0.08 debug-file=true
| Shell |
#!/bin/bash
cd empty/
./generate.sh
cd ../file_header/
./generate.sh
cd ../single_delta_encoding/
./generate.sh
cd ../double_delta_encoding/
./generate.sh
cd ../with_data/
./generate.sh | Shell |
java -cp bcprov-jdk16-143.jar:iText-2.1.5.jar:jdom.jar:jwizard.jar:registry.jar:swing-worker-1.2.jar:. Vista.Aplicacion
| Shell |
df -h | grep "/dev/"
| Shell |
hdparm -i $1 | grep Seri
| Shell |
#!/bin/sh
#! The following hack allows java to reside anywhere in the path.
//bin/sh -c "exec java bsh.Interpreter $0 $*"; exit
source("TestHarness.bsh");
/**
Test import precedence rules. Disambiguate with a class import.
Several cases here, should probably make more test classes.
Tried them here once...
Witho... | Shell |
#!/bin/sh
#! The following hack allows java to reside anywhere in the path.
//bin/sh -c "exec java bsh.Interpreter $0 $*"; exit
// Change to the test directory
path=pathToFile( getSourceFileInfo() ).getAbsolutePath();
cd( dirname( path ) );
list=pathToFile( bsh.cwd ).list();
failed=false;
warnings=false;
failedTests... | Shell |
#!/bin/sh
#! The following hack allows java to reside anywhere in the path.
//bin/sh -c "exec java bsh.Interpreter $0 $*"; exit
// Change to the test directory
path=pathToFile( getSourceFileInfo() ).getAbsolutePath();
cd( dirname( path ) );
list=pathToFile( bsh.cwd ).list();
failed=false;
warnings=false;
failedTests... | Shell |
#!/bin/sh
#! The following hack allows java to reside anywhere in the path.
//bin/sh -c "exec java bsh.Interpreter $0 $*"; exit
source("TestHarness.bsh");
/**
Test import precedence rules. Disambiguate with a class import.
Several cases here, should probably make more test classes.
Tried them here once...
Witho... | Shell |
#!/bin/sh
#
# Run the BeanShell interpreter on a file with command line arguments. If the
# user has bsh.Interpreter in their classpath then the interpreter is executed
# with the user's classpath. Otherwise, the default bsh path specified in
# DEFAULTBSH is added to end of the user's path.
#
# If you wish to avoid... | Shell |
#!/bin/sh
#
# Run the BeanShell interpreter on a file with command line arguments. If the
# user has bsh.Interpreter in their classpath then the interpreter is executed
# with the user's classpath. Otherwise, the default bsh path specified in
# DEFAULTBSH is added to end of the user's path.
#
# If you wish to avoid... | Shell |
#!/bin/sh
#
# Run the BeanShell interpreter on a file with command line arguments. If the
# user has bsh.Interpreter in their classpath then the interpreter is executed
# with the user's classpath. Otherwise, the default bsh path specified in
# DEFAULTBSH is added to end of the user's path.
#
# If you wish to avoid... | Shell |
#!/bin/sh
#
# Run the BeanShell interpreter on a file with command line arguments. If the
# user has bsh.Interpreter in their classpath then the interpreter is executed
# with the user's classpath. Otherwise, the default bsh path specified in
# DEFAULTBSH is added to end of the user's path.
#
# If you wish to avoid... | Shell |
#!/bin/sh
echo "Llamando a la Java (tm) Virtual Machine para ejecutar PUCK..."
java -Xmx512M -classpath PuckCore2.jar:lib/jhall.jar:lib/jhelpaction.jar:AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/jsyntaxpane-0.9.5-20100209.jar:lib/rsyntaxtextarea.jar:lib/rstaui.jar:lib/autocomplete.jar:lib/commons-logging-api.ja... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar PUCK..."
java -Xmx512M -classpath PuckCore2.jar:lib/jhall.jar:lib/jhelpaction.jar:AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/jsyntaxpane-0.9.5-20100209.jar:lib/r... | Shell |
#!/bin/sh
echo "Llamando a la Java (tm) Virtual Machine para ejecutar PUCK..."
java -Xmx512M -classpath PuckCore2.jar:lib/jhall.jar:lib/jhelpaction.jar:AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/jsyntaxpane-0.9.5-20100209.jar:lib/rsyntaxtextarea.jar:lib/rstaui.jar:lib/autocomplete.jar:lib/commons-logging-api.ja... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar PUCK..."
java -Xmx512M -classpath PuckCore2.jar:lib/jhall.jar:lib/jhelpaction.jar:AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/jsyntaxpane-0.9.5-20100209.jar:lib/r... | Shell |
#!/bin/sh
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:lib/jspeex0.9.7.jar:lib/tritonus_share.jar:lib/vorbisspi1.0.2.jar:lib/mp3spi1.9.4.... | Shell |
#!/bin/sh
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:lib/jspeex0.9.7.jar:lib/tritonus_share.jar:lib/vorbisspi1.0.2.jar:lib/mp3spi1.9.4.... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:l... | Shell |
#!/bin/sh
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:lib/jspeex0.9.7.jar:lib/tritonus_share.jar:lib/vorbisspi1.0.2.jar:lib/mp3spi1.9.4.... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:l... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:l... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:l... | Shell |
#!/bin/sh
here="`dirname \"$0\"`"
echo "Cambiando directorio a $here"
cd "$here" || exit 1
echo "Llamando a la Java (tm) Virtual Machine para ejecutar Aetheria..."
java -Xmx512M -classpath AgeCore.jar:lib/bsh-2.0b4.jar:lib/micromod.jar:lib/commons-logging-api.jar:lib/jl1.0.jar:lib/jogg-0.0.7.jar:lib/jorbis-0.0.15.jar:l... | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.