代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/239566/4598954
svn-base lexbash.cxx.svn-base
// Scintilla source code edit control
/** @file LexBash.cxx
** Lexer for Bash.
**/
// Copyright 2004-2005 by Neil Hodgson
// Adapted from LexPerl by Kein-Hong Man
www.eeworm.com/read/239312/4602415
opts2
#!/bin/bash
# Program: opts2
# Using getopts -- Second try --
while getopts xy options 2> /dev/null
do
case $options in
x) echo "you entered -x as an option";;
y) echo "you entered -y as an option
www.eeworm.com/read/235511/4650980
init ripngd.init
#!/bin/bash
#
# chkconfig: - 16 84
# description: A RIP routing engine for use with Zebra and IPv6
#
# processname: ripngd
# config: /etc/ripngd.conf
# source function library
. /etc/rc.d/init.d/func
www.eeworm.com/read/235511/4650982
init zebra.init
#!/bin/bash
#
# chkconfig: - 15 85
# description: GNU Zebra routing manager
#
# processname: zebra
# config: /etc/zebra.conf
# source function library
. /etc/rc.d/init.d/functions
RETVAL=0
[ -f /et
www.eeworm.com/read/235511/4650983
init ospfd.init
#!/bin/bash
#
# chkconfig: - 16 84
# description: An OSPF v2 routing engine for use with Zebra
#
# processname: ospfd
# config: /etc/ospfd.conf
# source function library
. /etc/rc.d/init.d/functions
www.eeworm.com/read/226006/4788998
man_pages
#!/bin/bash
if [ "$RELTYPE" = 'stable' ] ; then
echo -n "Converting man pages to HTML... "
#man ./logwatch.8 | man2html -nodepage > /var/www/mason/html/projects/logwatch/tabs/docs/logwatch.8.ht
www.eeworm.com/read/197479/5094828
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/190936/5170482
man_pages
#!/bin/bash
if [ "$RELTYPE" = 'stable' ] ; then
echo -n "Converting man pages to HTML... "
man ./logwatch.8 | man2html -nodepage > /var/www/mason/html/projects/logwatch/tabs/docs/logwatch.8.htm
www.eeworm.com/read/178760/5313347
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/175066/5350540
sslexplorer-console
#!/bin/bash
cd /usr/lib/sslexplorer
CP=/etc/sslexplorer
for i in lib/*.jar
do
CP="${CP}:${i}"
done
if [ -z "${JAVA_HOME}" ]
then echo "$0: Your JAVA_HOME environment variable is not set." >&2