代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/264715/11303771
sh cp.sh
#!/bin/bash
cp zh_CN.mo ./zh_CN/LC_MESSAGES/proxyfish.mo
www.eeworm.com/read/340749/12136077
unpacklogfiles
#! /bin/bash
./MersadAgent --offline-player --number 1 --goalie
./MersadAgent --offline-player --number 2
./MersadAgent --offline-player --number 3
./MersadAgent --offline-player --number 4
./MersadA
www.eeworm.com/read/339483/12230715
sh c-vars.sh
#!/bin/bash
# Manipulating a variable, C-style, using the ((...)) construct.
echo
(( a = 23 )) # Setting a value, C-style, with spaces on both sides of the "=".
echo "a (initial value) = $a"
(( a
www.eeworm.com/read/161040/5563974
sh setup_groups.sh
#!/bin/sh
# a simple Unix shell script for setting up to install Oracle 8.1.7
groupadd dba
groupadd oinstall
groupadd oracle
useradd -g dba -G oinstall,oracle -m oracle
echo "Enter the password you w
www.eeworm.com/read/161040/5563975
txt setup_groups.txt
#!/bin/sh
# a simple Unix shell script for setting up to install Oracle 8.1.7
groupadd dba
groupadd oinstall
groupadd oracle
useradd -g dba -G oinstall,oracle -m oracle
echo "Enter the password you w
www.eeworm.com/read/194702/8188028
unpacklogfiles
#! /bin/bash
./MersadAgent --offline-player --number 1 --goalie
./MersadAgent --offline-player --number 2
./MersadAgent --offline-player --number 3
./MersadAgent --offline-player --number 4
./MersadA
www.eeworm.com/read/268797/11121378
sh restartbug.sh
#!../../bash
#$Id: restartbug.sh,v 1.1.1.1 2006/01/02 23:34:26 rockyb Exp $
x=1
cd /
y=2
z=0
www.eeworm.com/read/268797/11121581
sh debug.sh
#!/bin/sh
if [[ "$1"x != x ]] ; then
echo "passed $1"
exit 1
fi
cmd=./debug.sh
./debug.sh $BASHDB_LEVEL
# ../../bash $cmd $x
$cmd $BASHDB_LEVEL
x=5