代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/407519/2262523
sh sequential_poisson_cube.sh
#!/bin/bash
outfile=sequential_poisson_cube.dat
num_procs=4
iter=1
num_cells=30
echo "Sequential Poisson" > $outfile
echo "Processes Time" >> $outfile
for (( i=1 ; i
www.eeworm.com/read/401534/2339744
sh server-regression.sh
#!/bin/bash
# Even in the 21st century some diffs are not supporting -u.
diff -u $0 $0 > /dev/null 2>&1
if [ $? -eq 0 ]; then
diff_cmd="diff -u"
else
diff_cmd="diff"
fi
# Make sure that the d
www.eeworm.com/read/393024/2489187
sh test.sh
#!/bin/bash
rs274 -v test.var -t test.tbl -g test.ngc | awk '{$1=""; print}'
result=$?
[ -f test.var.bak ] && mv test.var.bak test.var
exit $result
www.eeworm.com/read/393024/2489192
sh test.sh
#!/bin/bash
rs274 -v test.var -t test.tbl -g test.ngc | awk '{$1=""; print}'
result=$?
[ -f test.var.bak ] && mv test.var.bak test.var
exit $result
www.eeworm.com/read/393024/2489197
sh test.sh
#!/bin/bash
rs274 -v test.var -t test.tbl -g test.ngc | awk '{$1=""; print}'
result=$?
[ -f test.var.bak ] && mv test.var.bak test.var
exit $result
www.eeworm.com/read/393024/2489202
sh test.sh
#!/bin/bash
rs274 -v test.var -t test.tbl -g test.ngc | awk '{$1=""; print}'
result=$?
[ -f test.var.bak ] && mv test.var.bak test.var
exit $result
www.eeworm.com/read/393024/2489207
sh test.sh
#!/bin/bash
rs274 -v test.var -t test.tbl -g test.ngc | awk '{$1=""; print}'
result=$?
[ -f test.var.bak ] && mv test.var.bak test.var
exit $result
www.eeworm.com/read/384137/2603681
makefile
## Copyright (C) 2008 Pavel Sakov
##
## This file is part of EnKF-Matlab. EnKF-Matlab is a free software. See
## LICENSE for details.
SHELL = /bin/bash
FC = g95
FCFLAGS = -g -O2 -Wall -fno-second-
www.eeworm.com/read/382361/2637840
release
#!/bin/bash
export CVSROOT=ds@cvs.comedi.org:/var/cvs
export CVS_RSH=ssh
topdir=$(pwd)
if [ ! "$1" ]
then
echo -n "minor version: "
read minor
else
minor=$1
fi
lastminor=$(($minor - 1))
tag=r0
www.eeworm.com/read/369651/2796145
btscorunner
#!/bin/bash
HEADSETADDR=00:0A:94:93:74:B7
SWITCHFILE="/tmp/switch_dsp"
while true; do
rm -f "${SWITCHFILE}"
while [ x"$(hcitool name "$HEADSETADDR")" == x"" ]; do sleep 60; done
btsco -s "$HEADSE