code
stringlengths
1
1.96M
language
stringclasses
1 value
#!/bin/bash if [ "${#}" -lt "1" ] then echo "Generate various train and test sets from the syllables database" echo "Creates files in the current directory: train_speakers and test_speakers" echo "for training and testing." echo "Usage $0 train_set [value]" echo " Where train_set is one of" echo " ring...
Shell
#!/bin/bash if [ "${#}" -lt "1" ] then echo "Generate various train and test sets from the syllables database" echo "Creates files in the current directory: train_speakers and test_speakers" echo "for training and testing." echo "Usage $0 train_set [value]" echo " Where train_set is one of" echo " ring...
Shell
#!/bin/bash # Copyright 2010 Thomas Walters # # Generate a list of filenames from the syllables spoke pattern. # The first argument is the filname for the training talkers, the second # argument is the filename for the testing talkers. TRAIN_TALKERS=$1 TEST_TALKERS=$2 # Training talkers are the 8 talkers around the ...
Shell
#!/bin/bash # # Create HTK grammar and other files for the CNBH syllables database. # # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # The first command-line argument is the directory in which to place # the generated files. # # The following files are generated: # grammar - HTK grammar file # dictionar...
Shell
#!/bin/bash # Script to run a single HMM train/test cycle with the given parameters. # This script expects the following variables to be set # # total_hmm_states - total number of HMM states (including the 2 non-emitting states) # mixture_components - number of components in the output distribution for each emitting st...
Shell
#!/bin/bash # # Train and test an HTK monophone model using AIM or MFCC # features and the CNBH syllable databse # # Copyright 2009-2010 University of Cambridge # Author: Thomas Walters <tom@acousticscale.org> # # Run multiple HMMs set -e set -u WORKING_DIRECTORY=$1 FEATURE_SOURCE=$2 FEATURE_SUFFIX=$3 HMM_STATES_LIST...
Shell
#!/bin/bash # # Create HTK grammar and other files for the CNBH syllables database. # # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # The first command-line argument is the directory in which to place # the generated files. # # The following files are generated: # grammar - HTK grammar file # dictionar...
Shell
#!/bin/bash # HCOPY_CONFIG=hcopy.config HCOPY=`which HCopy` if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi set -e set -u FEATURES_DIR=$1 SOUND_SOURCE=$2 FULL_LIST=feature_generation_script # Temporary file names SYLLIST=syllable_list TALKERS=talker_list # The ...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Generate a list of source and destination filenames from the syllables spoke # pattern. This list can be used as a script for HTK's HCopy and AIM-C's # AIMCopy binaries for generating features. # # The first argument is the path to the root di...
Shell
#!/bin/bash HCOPY=`which HCopy` if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi set -e set -u FEATURES_DIR=$1 MACHINE_CORES=$2 FILE_LIST=feature_generation_script HCOPY_CONFIG=hcopy_configuration echo "Creating HCopy config file..." cat <<"EOF" > $FEATURES_DIR/${...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Generate a list of source and destination filenames from the syllables spoke # pattern. This list can be used as a script for HTK's HCopy and AIM-C's # AIMCopy binaries for generating features. # # The first argument is the path to the root di...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Makes a copy of the cnbh syllables database in FLAC format found in # $SOUNDS_ROOT/cnbh-syllables. The database is uncompressed to .WAV format # for use with AIMCopy and HCopy. # The first command-line argument is the location of $SOUNDS_ROOT ...
Shell
#!/bin/bash # Test for the existence of AIMCopy in the path AIMCOPY=`which AIMCopy` if [ "$AIMCOPY" == "" ]; then echo "Please build AIM-C and make AIMCopy available in the path" exit -1 fi set -e set -u AIMCOPY_CONFIGURATION_FILE=$1 FEATURES_DIR=$2 MACHINE_CORES=$3 FILE_LIST=feature_generation_script echo "Spl...
Shell
#!/bin/bash # HCOPY_CONFIG=hcopy.config HCOPY=`which HCopy` if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi set -e set -u FEATURES_DIR=$1 SOUND_SOURCE=$2 FULL_LIST=feature_generation_script # Temporary file names SYLLIST=syllable_list TALKERS=talker_list # The ...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Add pink noise to the CNBH syllables database. The first argument is the # path to the clean .wav files. The second argument is a quoted list of the # desired SNRs in dB, separated by spaces. Directories are made for each SNR # in the direct...
Shell
#!/bin/bash # Test for the existence of AIMCopy in the path AIMCOPY=`which AIMCopy` if [ "$AIMCOPY" == "" ]; then echo "Please build AIM-C and make AIMCopy available in the path" exit -1 fi set -e set -u AIMCOPY_CONFIGURATION_FILE=$1 FEATURES_DIR=$2 MACHINE_CORES=$3 FILE_LIST=feature_generation_script echo "Spl...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Add pink noise to the CNBH syllables database. The first argument is the # path to the clean .wav files. The second argument is a quoted list of the # desired SNRs in dB, separated by spaces. Directories are made for each SNR # in the direct...
Shell
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Makes a copy of the cnbh syllables database in FLAC format found in # $SOUNDS_ROOT/cnbh-syllables. The database is uncompressed to .WAV format # for use with AIMCopy and HCopy. # The first command-line argument is the location of $SOUNDS_ROOT ...
Shell
#!/bin/bash HCOPY=`which HCopy` if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi set -e set -u FEATURES_DIR=$1 MACHINE_CORES=$2 FILE_LIST=feature_generation_script HCOPY_CONFIG=hcopy_configuration echo "Creating HCopy config file..." cat <<"EOF" > $FEATURES_DIR/${...
Shell
#!/bin/bash find . -iname "results*" | xargs grep "Correct" | sed 's/.\///' | sed 's/states_/,/' | sed 's/mixture_components\/mfc\/results\.txt_iter/,/' | sed 's/:SENT: %Correct=/,/' | sed 's/ .*//' > final_results.txt
Shell
#!/bin/bash find ./ -iname "*.txt" | xargs grep "Score on test talkers" | sed "s/\.\///" | sed "s/4_states_4_mixture_components\/results_iteration_15.txt:# Score on test talkers: //" | sed "s/\//,/g" | sed "s/dB//" | sed "s/snr_//" | sed "s/_talkers//" | sed s/%// | sed s/,0,/,00,/ | sed s/,3,/,03,/ | sed s/,6,/,06,/ |...
Shell
#!/bin/bash find . -iname "results*" | xargs grep "Correct" | sed 's/.\///' | sed 's/states_/,/' | sed 's/mixture_components\/mfc\/results\.txt_iter/,/' | sed 's/:SENT: %Correct=/,/' | sed 's/ .*//' > final_results.txt
Shell
#!/bin/bash find ./ -iname "*.txt" | xargs grep "Score on test talkers" | sed "s/\.\///" | sed "s/4_states_4_mixture_components\/results_iteration_15.txt:# Score on test talkers: //" | sed "s/\//,/g" | sed "s/dB//" | sed "s/snr_//" | sed "s/_talkers//" | sed s/%// | sed s/,0,/,00,/ | sed s/,3,/,03,/ | sed s/,6,/,06,/ |...
Shell
#!/bin/bash # Set up AIM-C on an Amazon EC2 instance. A useful reference for building. set -e set -u AIMC_DIR=$1 PREV_DIR=`pwd` mkdir -p $AIMC_DIR cd $AIMC_DIR svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only cd aimc-read-only scons cd .. export PATH=$PATH:$AIMC_DIR/aimc-read-only/build/posix-release/...
Shell
#!/bin/bash # Set up AIM-C on an Amazon EC2 instance. A useful reference for building. set -e set -u AIMC_DIR=$1 PREV_DIR=`pwd` mkdir -p $AIMC_DIR cd $AIMC_DIR svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only cd aimc-read-only scons cd .. export PATH=$PATH:$AIMC_DIR/aimc-read-only/build/posix-release/...
Shell
#!/bin/bash # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone # ec2-run-instances --user-data-file ec2_user_data.sh --key tom_eu_west --instance-type m1.small --instance-count 1 --region eu-west-1 --availability-zone eu-west-1b ami-2fc2e95b # ec2-run-instances --user-data-file ec2_user_data.sh --ke...
Shell
#!/bin/bash # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone sudo apt-get -y update sudo apt-get -y install subversion scons pkg-config libsndfile-dev build-essential libboost-dev sudo mkdir /media/sounds-database sudo mkdir /media/results sudo mount /dev/sdf1 /media/sounds-database/ sudo mount /de...
Shell
#!/bin/bash ec2-run-instances \ --user-data-file ec2_user_data.sh \ --key tom_eu_west \ --instance-type m1.small \ --instance-count 1 \ --region eu-west-1 \ --avai...
Shell
#!/bin/bash doxygen doc/Doxyfile
Shell
#!/bin/bash ec2-run-instances \ --user-data-file ec2_user_data.sh \ --key tom_eu_west \ --instance-type m1.small \ --instance-count 1 \ --region eu-west-1 \ --avai...
Shell
#!/bin/bash find -E . -iregex ".*\.(h|cc|c)" | grep -v "ConvertUTF" | grep -v "SimpleIni" | xargs lint/cpplint.py --filter=-build/header_guard
Shell
#!/bin/bash cd swig python setup.py "build_ext" python setup.py install cd ..
Shell
#!/bin/bash # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone sudo apt-get -y update sudo apt-get -y install subversion scons pkg-config libsndfile-dev build-essential libboost-dev sudo mkdir /media/sounds-database sudo mkdir /media/results sudo mount /dev/sdf1 /media/sounds-database/ sudo mount /de...
Shell
#!/bin/bash wget -O- run.alestic.com/install/runurl | bash runurl run.alestic.com/email/start tom@tomwalters.co.uk runurl http://aimc.googlecode.com/svn/trunk/scripts/aws_prepare.sh
Shell
#!/bin/bash # # Run the syllables database 'spider pattern' through AIM-C # # Copyright 2009-2010 University of Cambridge # Author: Thomas Walters <tom@acousticscale.org> # Source directory for all the sound files #SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTk-AIM/Sounds/" #SOUND_SOURCE="/media/sounds-database/cnbh-...
Shell
#!/bin/bash cd /media/sounds-database/htk wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz tar -xzf HTK-3.4.1.tar.gz cd htk ./configure --disable-hslab make sudo make install
Shell
#!/bin/bash # using getopts # # Train and test an HTK monophone model using AIM # features and the CNBH syllable databse # # Copyright 2009-2010 University of Cambridge # Author: Thomas Walters <tom@acousticscale.org> # Based on the MATLAB scripts by Jess Monaghan and # modelled on HTKTimit.sh from Cantab Research sk...
Shell
#!/bin/bash find -E . -iregex ".*\.(h|cc|c)" | grep -v "ConvertUTF" | grep -v "SimpleIni" | xargs lint/cpplint.py --filter=-build/header_guard
Shell
#!/bin/bash # # Run the syllables database 'spider pattern' through AIM-C # # Copyright 2009-2010 University of Cambridge # Author: Thomas Walters <tom@acousticscale.org> # Source directory for all the sound files #SOUND_SOURCE="/Users/Tom/Documents/Work/PhD/HTk-AIM/Sounds/" #SOUND_SOURCE="/media/sounds-database/cnbh-...
Shell
#!/bin/bash # using getopts # # Train and test an HTK monophone model using AIM # features and the CNBH syllable databse # # Copyright 2009-2010 University of Cambridge # Author: Thomas Walters <tom@acousticscale.org> # Based on the MATLAB scripts by Jess Monaghan and # modelled on HTKTimit.sh from Cantab Research sk...
Shell
#!/bin/bash sudo apt-get -y update sudo apt-get -y install subversion svn checkout http://aimc.googlecode.com/svn/trunk/ aimc aimc/scripts/aim-o-matic/prepare_aws_instance_stage_2.sh
Shell
#!/bin/bash export PATH=$PATH:/usr/local/bin/ INPUT_DIR=/home/ubuntu/upload DONE_DIR=/home/ubuntu/processed mkdir ${DONE_DIR} OUTPUT_DIR=/var/www/results sudo mkdir $OUTPUT_DIR sudo chmod o+w $OUTPUT_DIR AIMC_DIR=/home/ubuntu/aimc/build/posix-release/ AIMC=$AIMC_DIR/AIMCopy mkdir -p /tmp/aimc/ for t in `seq 1 580`;...
Shell
#!/bin/bash sudo apt-get -y install scons pkg-config libsndfile1-dev build-essential ffmpeg apache2 php5 libcairo-dev libapache2-mod-php5 graphviz sudo a2enmod php5 sudo apache2ctl restart DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR/../../ scons sudo cp aimc/scripts/aim-o-matic/aim-o-matic.php aimc/...
Shell
#!/bin/bash sudo apt-get -y update sudo apt-get -y install subversion svn checkout http://aimc.googlecode.com/svn/trunk/ aimc aimc/scripts/aim-o-matic/prepare_aws_instance_stage_2.sh
Shell
#!/bin/bash sudo apt-get -y install scons pkg-config libsndfile1-dev build-essential ffmpeg apache2 php5 libcairo-dev libapache2-mod-php5 graphviz sudo a2enmod php5 sudo apache2ctl restart DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR/../../ scons sudo cp aimc/scripts/aim-o-matic/aim-o-matic.php aimc/...
Shell
#!/bin/bash export PATH=$PATH:/usr/local/bin/ INPUT_DIR=/home/ubuntu/upload DONE_DIR=/home/ubuntu/processed mkdir ${DONE_DIR} OUTPUT_DIR=/var/www/results sudo mkdir $OUTPUT_DIR sudo chmod o+w $OUTPUT_DIR AIMC_DIR=/home/ubuntu/aimc/build/posix-release/ AIMC=$AIMC_DIR/AIMCopy mkdir -p /tmp/aimc/ for t in `seq 1 580`;...
Shell
#!/bin/bash doxygen doc/Doxyfile
Shell
#!/bin/bash cd /media/sounds-database/htk wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz tar -xzf HTK-3.4.1.tar.gz cd htk ./configure --disable-hslab make sudo make install
Shell
#!/bin/bash wget -O- run.alestic.com/install/runurl | bash runurl run.alestic.com/email/start tom@tomwalters.co.uk runurl http://aimc.googlecode.com/svn/trunk/scripts/aws_prepare.sh
Shell
#!/bin/bash cd swig python setup.py "build_ext" python setup.py install cd ..
Shell
gcc -I ../thirdparty/hspell -L ../thirdparty/hspell poc.c -o poc -lhspell -lz
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/sh ############################################################################# # Installation # # Small installation script # ############################################################################# # Server data echo "Permissions for ./data/" chmod a+w ./data/cache/ && echo " ./cache/" chmod a+w ./...
Shell
#!/bin/sh APPDIR=$(dirname "$0") java -Djava.library.path="$APPDIR" -cp "lib/AhTextContext.jar" AhTextContext
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/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
#!/bin/bash # a script to test AI java_ex1 #test 0 cp test/in_00 ./input.txt java -jar java_ex1.jar echo -e "<<INPUT 00>>" cat input.txt echo -e "\n\n<<OUTPUT 00>>" cat output.txt rm input.txt #test 1 cp test/in_01 ./input.txt java -jar java_ex1.jar echo -e "\n\n<<INPUT 01>>" cat input.txt echo -e "\n\n<<OUTPUT 01>>"...
Shell
#!/bin/bash # a script to test AI java_ex1 #test 0 cp test/in_00 ./input.txt java -jar java_ex1.jar echo -e "<<INPUT 00>>" cat input.txt echo -e "\n\n<<OUTPUT 00>>" cat output.txt rm input.txt #test 1 cp test/in_01 ./input.txt java -jar java_ex1.jar echo -e "\n\n<<INPUT 01>>" cat input.txt echo -e "\n\n<<OUTPUT 01>>"...
Shell
ant clean; ant release; adb install -r bin/MetaTracker-release.apk
Shell
#!/bin/bash for i in `ls output/` do time=0 for n in `seq 1 5` do time=$(($time+`/usr/bin/time -f "%e" ./a.out -a fittest ../../usb/output/$i/* > /dev/null`)) done echo $i echo $time >> usb-a-time.log done for i in `ls output/` do /usr/bin/time --output=usb-s-time.log -a -f "%e" ./a.out -s fittest ../../usb/...
Shell
#!/bin/bash for i in `ls output/` do time=0 for n in `seq 1 5` do time=$(($time+`/usr/bin/time -f "%e" ./a.out -a fittest ../../usb/output/$i/* > /dev/null`)) done echo $i echo $time >> usb-a-time.log done for i in `ls output/` do /usr/bin/time --output=usb-s-time.log -a -f "%e" ./a.out -s fittest ../../usb/...
Shell
#!/bin/sh if [ $# -le 1 ] then echo "Usage: `basename $0` phpfreechat_path checkmd5_output_filename" echo "exempel: `basename $0` ~/pfc/misc/phpfreechat ~/pfc/misc/phpfreechat/checkmd5.php" exit; fi PFC_PATH=$1 DST=$2 TMP=/tmp/checkmd5.php if ( test -f $DST ) then echo "$DST should not exist. Please delete t...
Shell
#!/bin/sh NAME=phpfreechat-`cat ../version.txt` PFCSETUPNAME=pfcsetup-`cat ../version.txt` echo "-- creating archive $NAME --" echo "-> copying files" rm -rf ./$NAME svn export .. ./$NAME rm -rf ./$NAME/contrib rm -rf ./$NAME/admin rm -rf ./$NAME/lib/pear/.registry #echo "-> downloading documentation" #wget http://w...
Shell
#!/bin/sh NAME_TGZ=phpfreechat-`cat ../version.txt`.tar.gz NAME_ZIP=phpfreechat-`cat ../version.txt`.zip NAME_SETUP=phpfreechat-`cat ../version.txt`-setup.php #scp ./$NAME_ZIP ./$NAME_TGZ micropolia@phpfreechat.net:/home/micropolia/svn/phpfreechat/prod/www/download/ lftp -c "mput -O ftp://upload.sourceforge.net/incom...
Shell
#!/bin/sh for img in `ls *.png` do imgbase=`echo $img | sed "s/\.png//g"` convert $img $imgbase.gif done
Shell
#!/bin/sh if [ $# -le 1 ] then echo "Usage: `basename $0` phpfreechat_path checkmd5_output_filename" echo "exempel: `basename $0` ~/pfc/misc/phpfreechat ~/pfc/misc/phpfreechat/checkmd5.php" exit; fi PFC_PATH=$1 DST=$2 TMP=/tmp/checkmd5.php if ( test -f $DST ) then echo "$DST should not exist. Please delete t...
Shell
#!/bin/sh NAME_TGZ=phpfreechat-`cat ../version.txt`.tar.gz NAME_ZIP=phpfreechat-`cat ../version.txt`.zip NAME_SETUP=phpfreechat-`cat ../version.txt`-setup.php #scp ./$NAME_ZIP ./$NAME_TGZ micropolia@phpfreechat.net:/home/micropolia/svn/phpfreechat/prod/www/download/ lftp -c "mput -O ftp://upload.sourceforge.net/incom...
Shell
#!/bin/sh NAME=phpfreechat-`cat ../version.txt` PFCSETUPNAME=pfcsetup-`cat ../version.txt` echo "-- creating archive $NAME --" echo "-> copying files" rm -rf ./$NAME svn export .. ./$NAME rm -rf ./$NAME/contrib rm -rf ./$NAME/admin rm -rf ./$NAME/lib/pear/.registry #echo "-> downloading documentation" #wget http://w...
Shell
#!/bin/sh for img in `ls *.png` do imgbase=`echo $img | sed "s/\.png//g"` convert $img $imgbase.gif done
Shell
pear -c ./pearrc $1 $2 $3 $4
Shell
C_COMPILER=i586-mingw32msvc-gcc CC_COMPILER=i586-mingw32msvc-g++ MG_HEADERS=mongoose.h MG_SOURCES=mongoose.c AWC_HEADERS="AIMP2_SDK.h CRC32.h dealer.h Responder.h simpleserver.h ConfigFile.h" AWC_SOURCES="dllmain.cpp AIMP2WebControlHeader.hpp simpleserver.cpp dealer.cpp Responder.cpp CRC32.cpp MultiReaderSingleWriter...
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/sh # PRE-COMMIT HOOK # # The pre-commit hook is invoked before a Subversion txn is # committed. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-commit' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH (t...
Shell
#!/bin/sh # PRE-LOCK HOOK # # The pre-lock hook is invoked before an exclusive lock is # created. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-lock' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH (the pat...
Shell
#!/bin/sh # POST-REVPROP-CHANGE HOOK # # The post-revprop-change hook is invoked after a revision property # has been added, modified or deleted. Subversion runs this hook by # invoking a program (script, executable, binary, etc.) named # 'post-revprop-change' (for which this file is a template), with the # f...
Shell
#!/bin/sh # POST-COMMIT HOOK # # The post-commit hook is invoked after a commit. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-commit' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this rep...
Shell
#!/bin/sh # PRE-UNLOCK HOOK # # The pre-unlock hook is invoked before an exclusive lock is # destroyed. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-unlock' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH ...
Shell
#!/bin/sh # POST-COMMIT HOOK # # The post-commit hook is invoked after a commit. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-commit' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this rep...
Shell
#!/bin/sh # PRE-COMMIT HOOK # # The pre-commit hook is invoked before a Subversion txn is # committed. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-commit' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH (t...
Shell
#!/bin/sh # POST-LOCK HOOK # # The post-lock hook is run after a path is locked. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-lock' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this repos...
Shell
#!/bin/sh # POST-REVPROP-CHANGE HOOK # # The post-revprop-change hook is invoked after a revision property # has been added, modified or deleted. Subversion runs this hook by # invoking a program (script, executable, binary, etc.) named # 'post-revprop-change' (for which this file is a template), with the # f...
Shell
#!/bin/sh # PRE-UNLOCK HOOK # # The pre-unlock hook is invoked before an exclusive lock is # destroyed. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-unlock' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH ...
Shell
#!/bin/sh # POST-UNLOCK HOOK # # The post-unlock hook runs after a path is unlocked. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-unlock' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this...
Shell
#!/bin/sh # PRE-LOCK HOOK # # The pre-lock hook is invoked before an exclusive lock is # created. Subversion runs this hook by invoking a program # (script, executable, binary, etc.) named 'pre-lock' (for which # this file is a template), with the following ordered arguments: # # [1] REPOS-PATH (the pat...
Shell
#!/bin/sh # PRE-REVPROP-CHANGE HOOK # # The pre-revprop-change hook is invoked before a revision property # is added, modified or deleted. Subversion runs this hook by invoking # a program (script, executable, binary, etc.) named 'pre-revprop-change' # (for which this file is a template), with the following or...
Shell
#!/bin/sh # START-COMMIT HOOK # # The start-commit hook is invoked before a Subversion txn is created # in the process of doing a commit. Subversion runs this hook # by invoking a program (script, executable, binary, etc.) named # 'start-commit' (for which this file is a template) # with the following ordered...
Shell
#!/bin/sh # START-COMMIT HOOK # # The start-commit hook is invoked before a Subversion txn is created # in the process of doing a commit. Subversion runs this hook # by invoking a program (script, executable, binary, etc.) named # 'start-commit' (for which this file is a template) # with the following ordered...
Shell
#!/bin/sh # POST-LOCK HOOK # # The post-lock hook is run after a path is locked. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-lock' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this repos...
Shell
#!/bin/sh # POST-UNLOCK HOOK # # The post-unlock hook runs after a path is unlocked. Subversion runs # this hook by invoking a program (script, executable, binary, etc.) # named 'post-unlock' (for which this file is a template) with the # following ordered arguments: # # [1] REPOS-PATH (the path to this...
Shell
#!/bin/sh # PRE-REVPROP-CHANGE HOOK # # The pre-revprop-change hook is invoked before a revision property # is added, modified or deleted. Subversion runs this hook by invoking # a program (script, executable, binary, etc.) named 'pre-revprop-change' # (for which this file is a template), with the following or...
Shell
#!/bin/sh TLUIP=zenpixell3 EUDRBIP1=mvme6100 EUDRBIP2=mvme6200 export ROOTSYS=/usr/share/root/ export HOSTNAME=eudet cd `dirname $0`/bin echo 'STARTING DAQ' echo ' Cleaning up first...' killall RootMonitor.exe killall TestDataCollector.exe killall TLUProducer.exe killall TLUControl.exe ssh eudet@$TLUIP "killall T...
Shell
#!/bin/sh TLUIP=zenpixell3 EUDRBIP1=mvme6100 EUDRBIP2=mvme6200 export ROOTSYS=/usr/share/root/ export HOSTNAME=eudet cd `dirname $0`/bin echo 'STARTING DAQ' echo ' Cleaning up first...' killall RootMonitor.exe killall TestDataCollector.exe killall TLUProducer.exe killall TLUControl.exe ssh eudet@$TLUIP "killall T...
Shell
#!/bin/bash # cleanup of DAQ #EUDRBIP=eudetvme001.cern.ch EUDRBIP=mvme6100 #TLUIP=eudetpc001.cern.ch #TLUIP=tlupc TLUIP=zenpixell3 printf 'Killing DAQ\n' printf '\t Cleaning up...\n' killall RootMonitor.exe killall TestDataCollector.exe killall DEPFETProducerTCP.exe ssh -Y $EUDRBIP "killall EUDRBProducer.exe" & ssh -Y ...
Shell
#!/bin/bash # cleanup of DAQ #EUDRBIP=eudetvme001.cern.ch EUDRBIP=mvme6100 #TLUIP=eudetpc001.cern.ch #TLUIP=tlupc TLUIP=zenpixell3 printf 'Killing DAQ\n' printf '\t Cleaning up...\n' killall RootMonitor.exe killall TestDataCollector.exe killall DEPFETProducerTCP.exe ssh -Y $EUDRBIP "killall EUDRBProducer.exe" & ssh -Y ...
Shell
#!/bin/sh RCPORT=44000 BONNIP=192.76.172.120 [ "$1" != "" ] && RCPORT=$1 #export /opt/products/root/root_v5.26.00 export HOSTNAME=localhost export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/data/artem/eudaq_bonn_telescope_gmail/bin cd `dirname $0` printf '\033[1;32;48m \t STARTING DAQ \033[0m \n' printf '\033[22;33m\t Cle...
Shell
#!/bin/sh RCPORT=44000 BONNIP=192.76.172.120 [ "$1" != "" ] && RCPORT=$1 #export /opt/products/root/root_v5.26.00 export HOSTNAME=localhost export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/data/artem/eudaq_bonn_telescope_gmail/bin cd `dirname $0` printf '\033[1;32;48m \t STARTING DAQ \033[0m \n' printf '\033[22;33m\t Cle...
Shell
#!/bin/bash # cleanup of DAQ #EUDRBIP=eudetvme001.cern.ch EUDRBIP=mvme6100 #TLUIP=eudetpc001.cern.ch #TLUIP=tlupc TLUIP=zenpixell3 printf 'Killing DAQ\n' printf '\t Cleaning up...\n' killall RootMonitor.exe killall TestDataCollector.exe killall DEPFETProducerTCP.exe ssh -Y $EUDRBIP "killall EUDRBProducer.exe" & ssh -Y ...
Shell
#!/bin/bash # cleanup of DAQ #EUDRBIP=eudetvme001.cern.ch EUDRBIP=mvme6100 #TLUIP=eudetpc001.cern.ch #TLUIP=tlupc TLUIP=zenpixell3 printf 'Killing DAQ\n' printf '\t Cleaning up...\n' killall RootMonitor.exe killall TestDataCollector.exe killall DEPFETProducerTCP.exe ssh -Y $EUDRBIP "killall EUDRBProducer.exe" & ssh -Y ...
Shell
#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-09-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as pu...
Shell
#! /bin/bash ############################################################################## ## This file is a shell script fragment that supplies the information ## necessary to tailor a template configure script into the configure ## script appropriate for this directory. For more information, check ## any existing ...
Shell