代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/282122/9118677
init siproxd.init
#!/bin/bash
#
# /etc/rc.d/init.d/siproxd
#
# Starts the siproxd daemon
#
# chkconfig: 345 94 80
#
# description: Listen and dispatch SIP messages
# processname: siproxd
# Source function library.
.
www.eeworm.com/read/181778/9237196
init gpsd.init
#!/bin/bash
#
# gpsd This shell script starts and stops gpsd.
#
# chkconfig: 345 90 40
# description: Gpsd manages access to a serial- or USB-connected GPS
# processname: gpsd
# If you must specify a
www.eeworm.com/read/181687/9241387
m1test
#!/bin/bash
# usage: m1test [] '
# test recording script
#
# This file is part of adns, which is
# Copyright (C) 1997-2000,2003,2006 Ian Jackson
# Copyr
www.eeworm.com/read/178739/9386645
init siproxd.init
#!/bin/bash
#
# /etc/rc.d/init.d/siproxd
#
# Starts the siproxd daemon
#
# chkconfig: 345 94 80
#
# description: Listen and dispatch SIP messages
# processname: siproxd
# Source function library.
.
www.eeworm.com/read/374163/9419011
tcsh getopt-parse.tcsh
#!/bin/tcsh
# A small example program for using the new getopt(1) program.
# This program will only work with tcsh(1)
# An similar program using the bash(1) script language can be found
# as parse.ba
www.eeworm.com/read/371050/9569985
mkpackage
#! /bin/sh
#this bash used to collect the files which needed when run
## Created By Xu Yuan @2005-9-20
playerDir="SEU-3D"
#--------------------------------------------------
www.eeworm.com/read/361386/10055346
sh consegna.sh
#!/bin/bash
clear
echo
echo "Un compilatore TIGER (A.W.Appel 'modern compiler implementation in Java')"
echo "Laboratorio di Compilatori - Gabriele Persia, g.persia@libero.it"
echo
echo "> Selezionar
www.eeworm.com/read/277211/10654083
sh build-initrd.sh
#!/bin/bash
#
# build-initrd.sh
#
# Written by Jari Ruusu, October 19 2007
#
# Copyright 2001-2007 by Jari Ruusu.
# Redistribution of this file is permitted under the GNU Public License.
#
# Chan
www.eeworm.com/read/458682/7291313
sh random-test.sh
#!/bin/bash
# How random is RANDOM?
RANDOM=$$ # Reseed the random number generator using script process ID.
PIPS=6 # A die has 6 pips.
MAXTHROWS=600 # Increase this if you have noth
www.eeworm.com/read/458682/7291322
sh ex53.sh
#!/bin/bash
# Using "seq"
echo
for a in `seq 80` # or for a in $( seq 80 )
# Same as for a in 1 2 3 4 5 ... 80 (saves much typing!).
# May also use 'jot' (if present on system).
do
echo -n