代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/129064/5975285
genlog
#!/usr/bin/bash
mkdir -p ctl
cd ctl
rm -f *
nawk -f ../genlog.awk /dev/null
cd ..
www.eeworm.com/read/129064/5975298
genlog
#!/usr/bin/bash
mkdir -p ctl
cd ctl
rm -f *
nawk -f ../genlog.awk /dev/null
cd ..
www.eeworm.com/read/125819/6020956
test
#!/bin/bash
# Try out the simulator. Route serial port output to a text file.
# After simulator is started, you need to type:
# run
# stop
# quit
s51 -Sout=serial.txt hi.ihx
www.eeworm.com/read/112192/6149678
sh servicemanagertest.sh
#!/bin/bash
#
# $Id: ServiceManagerTest.sh,v 1.1 2001/10/26 21:47:53 icahoon Exp $
#
MACHINE="$(uname).$(uname -m)"
APP=ServiceManagerTest
if [ -x ./bin.debug.${MACHINE} ]
then
for FLAGS in "-f"
d
www.eeworm.com/read/103308/6219960
sh labelsync.sh
#!/bash/bin
echo "p4 -c $1 labelsync -l $2"
if test -z "$5"
then
p4 -c $1 -p $3 -u $4 labelsync -l $2
else
p4 -c $1 -p $3 -u $4 -P $5 labelsync -l $2
fi
www.eeworm.com/read/103308/6219968
sh getclientinfo.sh
#!/bin/bash
if test -z "$4"
then
echo "Not setting password environment variable"
p4 -c $1 -p $2 -u $3 client -o
else
echo "Setting password environment variable"
p4 -c $1 -p $2 -u $3 -P $4 client -o
www.eeworm.com/read/103308/6219970
sh prelabel.sh
#!/bin/bash
cd $1
if test -z "$7"
then
p4 -c $2 -p $3 -u $4 label -o > $5 $6
else
p4 -c $2 -p $3 -u $4 -P $7 label -o > $5 $6
fi
www.eeworm.com/read/103308/6219975
sh label.sh
#!/bin/bash
cd $1
if test -z "$6"
then
p4 -c $2 -p $3 -u $4 label -i < $5
else
p4 -c $2 -p $3 -u $4 -P $6 label -i < $5
fi
www.eeworm.com/read/103308/6219978
sh lock.sh
#!/bin/bash
if test -z "$5"
then
echo "Executing p4 -c $1 -p $3 -u $4 lock $2"
p4 -c $1 -p $3 -u $4 lock $2
else
echo "Executing p4 -c $1 -p $3 -u $4 -P $5 lock $2"
p4 -c $1 -p $3 -u $4 -P $5 lock $2
www.eeworm.com/read/103308/6220000
sh label.sh
#!/bin/bash
if test -z "$3"
then
echo "Executing label without password"
stcmd label -p $1 -x -stop -nl $2 -b
else
echo "Executing label with password"
stcmd label -p $1 -x -stop -pwdfile $3 -nl $2 -b