code stringlengths 1 1.96M | language stringclasses 1
value |
|---|---|
#!/bin/bash
mkdir -p org/apache/harmony/
mv javax org/apache/harmony/
find org/apache/harmony/ -name '*.java' -exec sed -i 's:package javax:package org.apache.harmony.javax:g' '{}' ';'
find -name '*.java' -exec sed -i 's:import javax.security.sasl:import org.apache.harmony.javax.security.sasl:g' '{}' ';'
find -name '*... | Shell |
#!/bin/bash
find -name '*.java' -exec sed -i 's:import org.apache.harmony.javax.security.sasl.Sasl;:import de.measite.smack.Sasl;:g' '{}' ';'
| Shell |
#!/bin/bash
find org/apache/harmony -name '*.java' -exec sed -i 's:import org.apache.harmony.auth.internal.nls.Messages;::' '{}' ';'
find org/apache/harmony -name '*.java' -exec sed -i 's:Messages.getString(\("[^"]*"\)):\1:g' '{}' ';'
| Shell |
#!/bin/bash
rm -rf org/ietf/
rm -rf org/apache/harmony/auth
rm -rf org/apache/harmony/javax/security/auth/kerberos/
rm -rf org/apache/harmony/javax/security/auth/x500/
rm org/apache/harmony/javax/security/auth/Policy.java
| Shell |
#!/bin/bash
rm org/jivesoftware/smack/debugger/LiteDebugger.java
rm org/jivesoftware/smackx/debugger/EnhancedDebugger.java
rm org/jivesoftware/smackx/debugger/EnhancedDebuggerWindow.java
| Shell |
#!/bin/bash
echo "## Step 00: initialize"
(
if ! [ -d build ]; then
mkdir build
mkdir build/src
mkdir build/src/trunk
fi
)
fetch() {
(
cd src
if ! [ -f "${2}/.svn/entries" ]; then
mkdir "${2}"
cd "${2}"
svn co --non-interactive --trust-server-cert "${1}" "."
else
cd "${2}"
sv... | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
./kill_process.sh
$ADB shell rm -r /data/data/com.google.android.apps.iosched/* | Shell |
#!/bin/sh
adb shell cat /data/data/com.google.android.apps.iosched/shared_prefs/com.google.android.apps.iosched_preferences.xml | xmllint --format - | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am start \
-a android.intent.action.MAIN \
-c android.intent.category.LAUNCHER \
-n com.google.android.apps.iosched/.ui.HomeActivity
| Shell |
#!/bin/sh
adb shell pm clear com.google.android.apps.iosched | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell am force-stop com.google.android.apps.iosched
| Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
MAC_UNAME="Darwin"
if [[ "`uname`" == ${MAC_UNAME} ]]; then
DATE_FORMAT="%Y-%m-%dT%H:%M:%S"
else
DATE_FORMAT="%Y-%m-%d %H:%M:%S"
fi
if [ -z "$1" ]; then
NOW_DATE=$(date "+${DATE_FORMAT}")
echo Please provide a mock time in the format \"${NOW_DATE}\" or \"d\" to del... | Shell |
#!/bin/sh
# Remember VERBOSE only works on debug builds of the app
adb shell setprop log.tag.iosched_SyncHelper VERBOSE
adb shell setprop log.tag.iosched_SessionsHandler VERBOSE
adb shell setprop log.tag.iosched_ImageCache VERBOSE
adb shell setprop log.tag.iosched_ImageWorker VERBOSE
adb shell setprop log.tag.iosched_I... | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell "echo '$*' | sqlite3 -header -column /data/data/com.google.android.apps.iosched/databases/schedule.db" | Shell |
#!/bin/sh
# Sessions list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/sessions
# Vendors list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/vendors
# Session detail
#adb shell am start -a... | 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 2010 Google Inc. All Rights Reserved.
# Author: jcgregorio@google.com (Joe Gregorio)
#
# Creates the documentation set for the library by
# running pydoc on all the files in apiclient.
#
# Notes: You may have to update the location of the
# App Engine library for your local system.
exp... | Shell |
echo "The following files are missing or are not checked in:"
hg st
echo "Enter to continue"
read -e YES
echo "The following files are missing from the MANIFEST file:"
cat MANIFEST | sort > sorted-manifest.txt
hg st --clean| sed "s/^C //" | grep -v "^v3" > sorted-allfiles.txt
diff sorted-allfiles.txt sorted-manifest.tx... | Shell |
#!/bin/bash
mkdir -p classes
mkdir -p classes/WordCount
mkdir -p classes/IndexBuilder
mkdir -p classes/GalaxyAverage
javac -classpath hadoop-0.19.1-core.jar src/main/java/com/cs498/team17/mp2/WordCount/WordCount.java -d classes/WordCount
javac -classpath hadoop-0.19.1-core.jar src/main/java/com/cs498/team17/mp2/Index... | 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 |
#!/bin/bash
osmosis --rx file=input.xml --mw file=output.map bbox=0,0,0.08,0.08 debug-file=true
| 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=-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 |
#!/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 |
<?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/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/sh
REV=`hg log -l 1 | grep changeset | cut -d: -f 2 | tr -d ' '`
echo $(($REV+1))
| Shell |
#!/bin/bash
SCRIPT_PATH=$0
GP_HOME=`dirname "$SCRIPT_PATH"`
GP_LOG_DIR="$HOME/.ganttproject.d"
# Check if log dir is present (or create it)
if [ ! -d $GP_LOG_DIR ]; then
if [ -e $GP_LOG_DIR ]; then
echo "file $GP_LOG_DIR exists and is not a directory" >&2
exit 1
fi
if ! mkdir $GP_LOG_DIR ; then
ec... | Shell |
#!/bin/sh
set -e
if [ -e /usr/bin/ganttproject ]; then rm -f /usr/bin/ganttproject; fi
if [ -x "$(which update-mime >/dev/null 2>&1)" ]; then update-mime; fi
if [ -x "$(which update-menus 2>/dev/null)" ]; then update-menus; fi
| Shell |
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
if [ -e /usr/bin/ganttproject ]; then rm -f /usr/bin/ganttproject; fi
ln -s /usr/share/ganttproject/ganttproject /usr/bin/ganttproject
if [ -x "$(which update-menus 2>/dev/null)" ]; then update-menus; fi
if [ -x "$(which update-mime 2>/dev/null)" ]; then update... | Shell |
#!/bin/bash
cat $1 | sed s/^\\\([0-9_\\.a-zA-Z]\\+\\\)\\s\*=\\s\*/\\1\ =\ / | sed s/\\\\u\\\([0-9a-f]\\{4\\}\\\)/\\\\u\\U\\1\\E/g > $2
| Shell |
#! /bin/bash
# Location where to install GanttProject
INSTALL_PATH=/usr/local/share/ganttproject/
# Location of executable of GanttProject
GP_EXECUTABLE=/usr/local/bin/ganttproject
# Assuming that writing at INSTALL_PATH and GP_EXECUTABLE needs root rights:
if [ "$(id -u)" != "0" ]; then
echo "This script must be... | Shell |
#!/bin/bash
SCRIPT_PATH=$0
RESOLVED_PATH=`readlink -f "$SCRIPT_PATH"`
while [ ! "$RESOLVED_PATH" = "$SCRIPT_PATH" ]; do
SCRIPT_PATH=$RESOLVED_PATH
RESOLVED_PATH=`readlink -f "$SCRIPT_PATH"`
done
GP_HOME=`dirname "$SCRIPT_PATH"`
GP_LOG_DIR="$HOME/.ganttproject.d"
# Check if log dir is present (or create it)
if [ ... | Shell |
# set params
NDK_ROOT=/Users/apple/sdks/android-ndk-r7b
COCOS2DX_ROOT=/Users/apple/sdks/cocos2d-1.0.1-x-0.12.0
APP_ROOT=/Users/apple/workspaces/smartphone/first
APP_ANDROID_ROOT=$APP_ROOT/android
RESOURCE_ROOT=$APP_ROOT/Resources
# make sure assets is exist
if [ -d $APP_ANDROID_ROOT/assets ]; then
rm -rf $APP_AND... | Shell |
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
| 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
if [ $(uname -s) == "Darwin" ]
then
open=open
else
open=xdg-open
fi
$open http://localhost:$port/templat... | Shell |
#!/bin/sh
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
\"http://www.w3.org/TR/html4/loose.dtd\">
<html>
<head>
<title>Jasmine Test Runner - Platform Core</title>
<link rel=\"stylesheet\" type=\"text/css\" href=\"../../../../testreporter/deploy/testreporter/resources/r... | Shell |
#!/bin/sh
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
\"http://www.w3.org/TR/html4/loose.dtd\">
<html>
<head>
<title>Jasmine Test Runner - Platform Core</title>
<link rel=\"stylesheet\" type=\"text/css\" href=\"../../../../testreporter/deploy/testreporter/resources/r... | Shell |
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
javac -target 1.5 -source 1.5 $DIR/testlibs/*.java
if [ -n "$JYTHON_HOME" ]
then
javac -cp $JYTHON_HOME/jython.jar -target 1.5 -source 1.5 $DIR/listeners/*.java
else
echo set JYTHON_HOME to compile listeners
fi
| Shell |
#!/bin/sh
testdir=`dirname $0`
rm -f $testdir/output.*
export PYTHONPATH=$testdir/../../../src
python -m robot.run -l none -r none -d $testdir $testdir/test.txt
python $testdir/../times2csv.py $testdir/output.xml
echo "------------------------------ results ------------------------------"
cat $testdir/output.csv
echo "... | Shell |
#!/bin/bash
testdir=`dirname $0`
pybot --loglevel DEBUG --log none --report none --outputdir $testdir $testdir/example.txt
python $testdir/../statuschecker.py $testdir/output.xml
rebot $testdir/output.xml
echo "$? tests failed, 5 should have failed."
echo "Check that tests starting with 'FAILURE:' have failed and other... | Shell |
#!/bin/bash
dirname=robotframework-c-example
zipname=$dirname-$(date +%Y%m%d).zip
files="README.txt login.c LoginLibrary.py LoginTests.tsv Makefile"
rm -rf $dirname $zipname
mkdir $dirname
echo Copying...
for file in $files; do
cp -v $file $dirname
done
echo Zipping...
zip -r $zipname $dirname
rm -rf $dirname
ech... | Shell |
#!/bin/bash
base=`dirname $0`
ROBOT_SYSLOG_FILE=$base/tmp/syslog.txt python $base/src/robot/run.py -P $base/atest/testresources/testlibs -P $base/tmp -L debug -d $base/tmp "$@"
| Shell |
#!/bin/bash
pybot --outputdir results --exclude parallel atest/ | Shell |
#!/bin/bash
#python src/robot/rebot.py $* &> /dev/null &
python src/robot/run.py $* &> /dev/null &
#/usr/lib/jvm/java-6-sun/jre/bin/java -Xmx1024m -Xss1024k -classpath /home/jth/opt/jython2.5.1/jython.jar: -Dpython.home=/home/jth/opt/jython2.5.1 -Dpython.executable=/home/jth/opt/jython2.5.1/jython org.python.util.jyt... | Shell |
#!/bin/bash
cd $(dirname "$0")/..
if [ -z "$JAVA_HOME" ]; then
export JAVA_HOME=/usr/lib/jvm/java-6-sun
export PATH=$JAVA_HOME/bin:$PATH
export LD_LIBRARY_PATH=$JAVA_HOME/lib:$LD_LIBRARY_PATH
fi
#svn -q up
#java -version
#fix for Ubuntu Hardy
export LIBXCB_ALLOW_SLOPPY_LOCK=1
CLASSPATH="$(pwd)/resource... | Shell |
#!/bin/sh
APPDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$SDKJAR" com.google.gwt.i18n.tools.I18NSync -out $APPDIR/src com.google.livingstories.client.contentmanager.ContentManagerMessages -createMessages ;
| Shell |
#!/bin/sh
APPDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$SDKJAR" com.google.gwt.i18n.tools.I18NSync -out $APPDIR/src com.google.livingstories.client.ClientConstants ;
| Shell |
#!/bin/sh
APPDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$SDKJAR" com.google.gwt.i18n.tools.I18NSync -out $APPDIR/src com.google.livingstories.client.contentmanager.ContentManagerConstants ;
| Shell |
#!/bin/sh
APPDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$SDKJAR" com.google.gwt.i18n.tools.I18NSync -out $APPDIR/src com.google.livingstories.client.lsp.LspConstants ;
| 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/sh
APPDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$SDKJAR" com.google.gwt.i18n.tools.I18NSync -out $APPDIR/src com.google.livingstories.client.lsp.LspMessages -createMessages ;
| Shell |
# This shell script compiles the gxps in the project. If you add a new gxp source directory,
# add that as an argument to the compiler here as well.
java -cp war/WEB-INF/lib/gxp-0.2.4-beta.jar com.google.gxp.compiler.cli.Gxpc --dir genfiles --source src --output_language java src/com/google/livingstories/gxps/*.gxp
| Shell |
#!/bin/sh
adb shell cat /data/data/com.google.android.apps.iosched/shared_prefs/com.google.android.apps.iosched_preferences.xml | xmllint --format - | Shell |
#!/bin/sh
#
# Copyright 2013 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
adb shell pm clear com.google.android.apps.iosched | Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
MAC_UNAME="Darwin"
if [[ "`uname`" == ${MAC_UNAME} ]]; then
DATE_FORMAT="%Y-%m-%dT%H:%M:%S"
else
DATE_FORMAT="%Y-%m-%d %H:%M:%S"
fi
if [ -z "$1" ]; then
NOW_DATE=$(date "+${DATE_FORMAT}")
echo Please provide a mock time in the format \"${NOW_DATE}\" or \"d\" to del... | Shell |
#!/bin/sh
# Remember VERBOSE only works on debug builds of the app
adb shell setprop log.tag.iosched_SyncHelper VERBOSE
adb shell setprop log.tag.iosched_SessionsHandler VERBOSE
adb shell setprop log.tag.iosched_BitmapCache VERBOSE
| Shell |
#!/bin/sh
if [[ -z $ADB ]]; then ADB=adb; fi
$ADB shell "echo '$*' | sqlite3 -header -column /data/data/com.google.android.apps.iosched/databases/schedule.db" | Shell |
#!/bin/sh
# Sessions list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/sessions
# Vendors list
#adb shell am start -a android.intent.action.VIEW -d content://com.google.android.apps.iosched/tracks/android/vendors
# Session detail
#adb shell am start -a... | 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/bash
# This is a Tmux script that handles starting up tintin with all of the Aardwolf settings.
# You will need to change the -x <column> and -y <row> size
# Also change '/home/adam/tt/aard' to whatever directory you use for the settings.
# Requires Tmux 1.5 - See http://theixle.dyndns.org for a download link.
... | Shell |
#!/bin/bash
tmux kill-session -t aardwolf
tmux new-session -d -s aardwolf -x 137 -y 31 'tail -fs .1 Aardwolf-chats'
tmux splitw -v -l 21 'tt++ -G setup.tin;bash -i'
tmux splitw -h -l 30 'tail -fs .1 minimap'
tmux selectp -t 1
tmux attach -t aardwolf
| Shell |
# Copyright 2012 Google Inc. All Rights Reserved.
#
# author: psimakov@google.com (Pavel Simakov)
#
# This script starts local developer Google AppEngine server and initializes it
# with the default data set.
#
# Run this script from the coursebuilder/ folder:
# sh ./scripts/start.sh
#
usage () { echo "Options: -... | Shell |
#!/bin/bash
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Wrapper script for tools/etl/etl.py that sets up the environment correctly.
#
# Run this script as follows:
# sh ./scripts/etl.sh <arguments>
#
# ETL's arguments are involved; pass --help for details. You will need to
# provide credentials when usin... | Shell |
#! /bin/sh
# Copyright 2012 Google Inc. All Rights Reserved.
#
# author: psimakov@google.com (Pavel Simakov)
#
# This script starts local developer Google AppEngine server for integration
# tests and initializes it with a default data set.
#
# Run this script from the coursebuilder/ folder:
# sh ./scripts/start_i... | Shell |
#!/bin/bash
# Copyright 2012 Google Inc. All Rights Reserved.
#
# author: sll@google.com (Sean Lip)
# Run this script from the Course Builder folder as follows:
# sh ./scripts/test.sh --test_class <dotted test name>
# E.g.,
# Run all tests in a module:
# sh ./scripts/test.sh tests.unit.common_safe_dom
#
# ... | Shell |
#!/bin/bash
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Usage:
#
# Run this script from the Course Builder folder. It can be run with the
# following arguments:
#
# Deploy Course Builder to the App Engine app named in app.yaml:
# sh ./scripts/deploy.sh
#
# Deploy Course Builder to the given App Engine ap... | Shell |
# Copyright 2013 Google Inc. All Rights Reserved.
#
#
# This script sets up all build/test dependencies including Google App Engine,
# WebTest, Selenium, Chromedriver, etc. All other scripts will include this
# script to setup these dependencies.
#
# Force shell to fail on any errors.
set -e
shopt -s nullglob
# Se... | Shell |
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Set common config variables for developer runtime environment scripts.
# NOTE: This file is also evaluated by Python scripts to get configurations
# from environment variables. Do not add any non-idempotent side-effects
# to this script.
export SOURCE_DIR="$( cd "... | Shell |
#!/bin/bash
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Wrapper script for modules.py that sets up paths correctly. Usage from your
# coursebuilder/ folder:
#
# sh scripts/modules.sh [args]
set -e
. "$(dirname "$0")/common.sh"
python "$COURSEBUILDER_HOME/scripts/modules.py" "$@"
| Shell |
#!/bin/sh
/usr/local/bin/Adobe_Flex_Builder/sdks/3.5.0/bin/asdoc -target-player="10.0.42" -locale en_US -define=CONFIG::debugging,false -define=CONFIG::release,false -define=CONFIG::standalone,true -source-path /home/zenyk/workspace/Projects/Flex/VectorViewerStandalone/src/ -source-path /home/zenyk/workspace/Projects/F... | Shell |
#!/bin/sh
/usr/local/bin/Adobe_Flex_Builder/sdks/3.5.0/bin/asdoc -target-player="10.0.42" -locale en_US -define=CONFIG::debugging,false -define=CONFIG::release,false -define=CONFIG::standalone,true -source-path /home/zenyk/workspace/Projects/Flex/VectorEditorStandalone/src/ -source-path /home/zenyk/workspace/Projects/F... | Shell |
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
| Shell |
rm -rf build
rm -rf tmp
| Shell |
python build.py
dev_appserver.py --port 9999 build
| Shell |
appcfg.py update build
| Shell |
#utility to upload files to arduino ethernet board
avrdude -p atmega328p -b 115200 -c stk500v2 \
-e -U flash:w:$1 -P usb \
-U lfuse:w:0xff:m -U hfuse:w:0xda:m -U efuse:w:0x05:m
| Shell |
#!/bin/bash
source ~/.profile
cd ~/SimulationData
Transfer -be 85.8 -g -lf ~/Simulation/LevelFiles/Mg31FourLevels.dat -op ~/Simulation/OP_30Mg_1H_2H_12C.dat -sc mylar -sf ~/Simulation/Settings/DefaultSettings.dat -tc -1. -f ~/SimulationData/Mg31fourlevel_screened_real -n 1000000
| Shell |
#!/bin/bash
source ~/.bashrc-private
Transfer -be 31.35 -bw 5 -ex 4 -cp 1 -nc 1 -lf /Programs/Transfer/LevelFiles/Be11Levels.dat -r 11Be 1H 0 -tm 0. -tM 3.1415 -sc mylar -sf /Programs/Transfer/Settings/11Be_Settings.dat -tc 1. -f ~/Physics/Phd./is430/2010/Data/Simulation/11Be_pp_05m1 -n 1000000
scp ~/Physics/Phd./is430... | Shell |
#!/bin/bash
source ~/.profile
Transfer -be 31.35 -bw 5 -ex 4 -cp 1 -nc 1 -g 0 -lf ./LevelFiles/Be11Levels.dat -r 11Be 2H 0 -tm 0. -tM 3.1415 -sc mylar -sf ./Settings/11Be_settings.dat -tc 1. -f ~/Physics/is430/2010/Data/Simulation/tmp -n 100000
| Shell |
#!/bin/bash
source ~/.profile
Transfer -g -lf ~/Simulation/LevelFiles/Mg31FourLevels.dat -op ~/Simulation/OP_30Mg_1H_2H_12C.dat -sc mylar -sf ~/Simulation/Settings/DefaultSettings.dat -tc 0. -f ~/SimulationData/Mg31fourlevel_screened_elastic -n 1000000
| Shell |
#!/bin/bash
source ~/.bashrc-private
Transfer -be 30.8 -bw 5 -ex 4 -cp 1 -lf /Programs/Transfer/LevelFiles/Be11Levels.dat -r 12Be 2H 10 -tm 0 -tM 3.1415 -sc mylar -sf /Programs/Transfer/Settings/11Be_settings.dat -tc 1. -f ~/Physics/Phd./is430/2010/Data/Simulation/12Be_dt_gs -n 100000
scp ~/Physics/Phd./is430/2010/Data... | Shell |
#!/bin/bash
source ~/.profile
Transfer -be 29.6 -bw 6. -Aw 0.0 -ex 4 -cp 1 -nc 1 -lf /usr/local/TREX_simulation/LevelFiles/Be10Levels.dat -r 11Be 2H 10 -tm 0 -tM 3.1415 -sc mylar -sf /usr/local/TREX_simulation/Settings/11Be_settings.dat -tc 1. -f /Data/IS430/Simulation/11Be_dt_gs_w6_x1_thm1_Flat30p7 -n 500000
| Shell |
#!/bin/bash
source ~/.bashrc-private
Transfer -be 31.35 -bw 5 -ex 4 -cp 1 -nc 1 -lf /Programs/Transfer/LevelFiles/Be11Levels.dat -r 11Be 2H 11 -tm 0. -tM 3.1415 -sc mylar -sf /Programs/Transfer/Settings/11Be_settings.dat -tc 1. -f ~/Physics/Phd./is430/2010/Data/Simulation/11Be_da_gs_test -n 1000000
scp ~/Physics/Phd./i... | Shell |
#!/bin/bash
source ~/.bashrc-private
Transfer -be 31.35 -bw 5 -ex 4 -cp 1 -nc 1 -lf /Programs/Transfer/LevelFiles/Be11Levels.dat -r 11Be 2H 31 -tm 0. -tM 3.1415 -sc mylar -sf /Programs/Transfer/Settings/11Be_settings.dat -tc 1. -f ~/Physics/Phd./is430/2010/Data/Simulation/11Be_d6He_gs -n 1000000
scp ~/Physics/Phd./is43... | Shell |
#!/bin/bash
source ~/.bashrc-private
Transfer -be 31.35 -bw 5 -ex 4 -cp 1 -nc 1 -lf /Programs/Transfer/LevelFiles/Be10Levels.dat -r 11Be 1H 10 -tm 0. -tM 3.1415 -sc mylar -sf /Programs/Transfer/Settings/11Be_Settings.dat -tc 1. -f ~/Physics/Phd./is430/2010/Data/Simulation/11Be_pd_gs -n 1000000
scp ~/Physics/Phd./is430/... | Shell |
#!/bin/bash
source ~/.profile
cd ~/scratch/data/kinematic_geant/
Transfer -g -lf ~/g4miniball/examples/Transfer/LevelFiles/Mg31FourLevels.dat -op ~/g4miniball/examples/Transfer/OP_30Mg_1H_2H_12C.dat -sc mylar -sf ~/g4miniball/examples/Transfer/Settings/DefaultSettings100ugTarget.dat -tc -1. -f Mg31fourlevel_screened_re... | Shell |
#!/bin/bash
source ~/.profile
cd ~/SimulationData
Transfer -be 180. -g -lf ~/Simulation/LevelFiles/Mg31FourLevels.dat -op ~/Simulation/OP_30Mg_1H_2H_12C.dat -r 64Ni 2H 1 -sc mylar -sf ~/Simulation/Settings/DefaultSettings90ugTarget.dat -tc -1. -f ~/SimulationData/Ni64_test_screened_real_90ugTarget -n 1000000
| Shell |
#!/bin/bash
source ~/.profile
cd ~/scratch/data/kinematic_geant/
Transfer -be 180. -g -lf ~/g4miniball/examples/Transfer/LevelFiles/Mg31FourLevels.dat -op ~/g4miniball/examples/Transfer/OP_30Mg_1H_2H_12C.dat -r 64Ni 2H 1 -sc mylar -sf ~/g4miniball/examples/Transfer/Settings/DefaultSettings90ugTarget.dat -tc -1. -f Ni64... | Shell |
#!/bin/bash
if [ $# -ne 2 ];
then
echo "usage: CreateScript.sh <scriptname> <nof instances>"
exit -1
fi
cd /home/vbild/Simulation/submit
for ((i=1;i<=$2;i++))
do
awk -f CreateScript.awk this=$i < $1.sh > $1_$i.sh
chmod a+x $1_$i.sh
done
| Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.