代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/406866/2272873
snmpd
#!/bin/bash
# See /etc/rc.d/init.d/common_script for comments.
export START_CMD="/opt/snmp/sbin/snmpd -p /var/run/snmpd.pid -c /etc/snmp/snmpd.conf -C"
export PID_FILE=/var/run/snmpd.pid
export STA
www.eeworm.com/read/406866/2272878
tbl2filed
#!/bin/bash
# See /etc/rc.d/init.d/common_script for comments.
export START_CMD=/opt/laddie/bin/tbl2filed
export PID_FILE=/opt/laddie/tbl2filed/tbl2filed.pid
export STARTING_MSG="Starting the t
www.eeworm.com/read/393024/2489704
sh mkconv.sh
#!/bin/bash
if [ $1 == "float" -o $2 == "float" ]; then F=""; else F="nofp"; fi
sed -e "s,@IN@,$1,g; s,@OUT@,$2,g; s,@CC@,$3,g; s,@MIN@,${4-0},g; s,@MAX@,${5-0},g; s,@FP@,$F,g;"
www.eeworm.com/read/389758/2538887
lin cap.lin
#!/bin/bash
# Update for A1200 by yan0, 2006/6/6
# Update for E2 by yan0, 2006/9/16
cap_file (){
p='1'
q='1'
while [ $p -le $2 ]
do
name="pic_"$q
while [ -f $name ]
do
q=$(($q + 1 ))
name="pic_
www.eeworm.com/read/358128/3002371
sh package.sh
#!/bin/bash
VERSION=`tla tree-version 2>&1 | sed "s/^.*\([0-9][0-9]*\.[0-9][0-9]*\)$/\1/g"`
TARGET_DIR=BUILD/
TARGET_DIRS=`find Structures -type d | grep -v .arch-ids`
mkdir -p $TARGET_DIR
./genpackag
www.eeworm.com/read/358128/3003149
txt passwd.unix.txt
bug3348:wxLaOdcajuKoI:500:501:having # in gecos:/nonexistent:/bin/false
mike:q4M4mpfilkNnU:501:502:User1:/home/mike:/bin/bash
pete:dS80VTLQHZ6VM:502:503:User2:/home/pete:/bin/sh
mary:jHSiqFjaEiKPM:503
www.eeworm.com/read/179031/9377835
build
#!/bin/bash
echo remove old dirs
rm -rf tmake
rm -rf qt
rm -rf qt-x11
rm -rf qtopia
echo Unpack all packages
tar xzvf tmake-1.11.tar.gz
tar xzvf qt-embedded-2.3.7.tar.gz
tar xzvf qt-x11-2.3.2.tar.gz
www.eeworm.com/read/169323/9865979
sh hhdjmonps.sh
#!/bin/bash
# 是否是测试版
V_DEBUG=0
F_DEBUG=1
# 监测的时间间隔,秒计
INTERVAL=5
# 重起时间间隔
INTERVALRESTART=1
# 监测和进程名
PROGRAME=./hhdjrecvcfg
#正常线程数
threadnum=11
while true; do
nowps=`ps -ax | grep $PROGRAME | grep
www.eeworm.com/read/443340/7634443
build
#!/bin/bash
echo remove old dirs
rm -rf tmake
rm -rf qt
rm -rf qt-x11
rm -rf qtopia
echo Unpack all packages
tar xzvf tmake-1.11.tar.gz
tar xzvf qt-embedded-2.3.7.tar.gz
tar xzvf qt-x11-2.3.2.tar.gz
www.eeworm.com/read/438832/7725294
sh ex73.sh
#!/bin/bash
# 创建一个交换文件.
ROOT_UID=0 # Root用户的$UID为0.
E_WRONG_USER=65 # 不是root?
FILE=/swap
BLOCKSIZE=1024
MINBLOCKS=40
SUCCESS=0
# 这个脚本必须以root身份来运行.
if [ "$UID" -ne "$ROOT_UID" ]
then