代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/333835/3381672
sh sanity.sh
#!/bin/bash
#
# Run select tests by setting ONLY, or as arguments to the script.
# Skip specific tests by setting EXCEPT.
#
# e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
set -e
ONLY=${ONLY
www.eeworm.com/read/333835/3381677
sh recovery-small.sh
#!/bin/bash
set -e
# bug 5493
ALWAYS_EXCEPT="52 $RECOVERY_SMALL_EXCEPT"
#PTLDEBUG=${PTLDEBUG:--1}
LUSTRE=${LUSTRE:-`dirname $0`/..}
. $LUSTRE/tests/test-framework.sh
init_test_env $@
. ${C
www.eeworm.com/read/333835/3381684
sh replay-dual.sh
#!/bin/bash
set -e
# bug number: 10124
ALWAYS_EXCEPT="15c $REPLAY_DUAL_EXCEPT"
SAVE_PWD=$PWD
PTLDEBUG=${PTLDEBUG:--1}
LUSTRE=${LUSTRE:-`dirname $0`/..}
SETUP=${SETUP:-""}
CLEANUP=${CLEANUP:-""}
www.eeworm.com/read/333835/3381690
sh sanityn.sh
#!/bin/bash
set -e
ONLY=${ONLY:-"$*"}
# bug number for skipped test: 3192 12652 9977
ALWAYS_EXCEPT=" 14b 14c 28 $SANITYN_EXCEPT"
# UPDATE THE COMMENT ABOVE WITH BUG NUMBERS W
www.eeworm.com/read/333835/3381704
sh llmount.sh
#!/bin/bash
export PATH=`dirname $0`/../utils:$PATH
NAME=${NAME:-local}
LUSTRE=${LUSTRE:-`dirname $0`/..}
. $LUSTRE/tests/test-framework.sh
init_test_env $@
. ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
[
www.eeworm.com/read/318039/3572202
sh runtests.sh
#!/bin/bash
PORT=12340
HOME_PORT=12350
rm -f verbose.log
RCODE=0
rm -rf .cache
mkdir .cache
#
# Bootstrap the tests
#
for NAME in $@
do
TOTAL=`grep TESTS $NAME | sed 's/.*TESTS//'`
#
# Ea
www.eeworm.com/read/317330/3582697
sh openfire-launchd-wrapper.sh
#!/bin/bash
export OPENFIRE_HOME=/usr/local/openfire
export JAVA_HOME=/Library/Java/Home
function shutdown()
{
date
echo "Shutting down Openfire"
kill -s TERM `ps auxww | grep -v wrapper | awk
www.eeworm.com/read/311226/3686406
sh syn-func.sh
#!/bin/bash
# Functions in support of syntax tests
# Source this file.
declare -a GOOD
GOOD_N=0
declare -a BAD
BAD_N=0
function fname
{
local BASE="$1" # Base
local N="$2" # Number
loca
www.eeworm.com/read/306677/3735242
testit
#! /bin/bash
rm -f RECV.log
./client 1 + 2
if [ -f RECV.log ] ; then \
cat RECV.log; \
else \
echo "When you recompile both gsoap and this project with configure --enable-debug, then a protocol lo
www.eeworm.com/read/289075/3995975
sh sizes_to_csv.sh
#!/bin/bash
ALGORITHMS=$(ls *.out | cut -d . -f 2 | sort | uniq)
DATASETS=$(ls *.out | cut -d . -f 1 | sort | uniq)
echo -n "Algorithm;"
for i in $DATASETS; do
echo -n "${i};"
done;
echo
for i