代码搜索:bash

找到约 5,321 项符合「bash」的源代码

代码结果 5,321
www.eeworm.com/read/100263/15879588

c vi_mode.c

/* vi_mode.c -- A vi emulation mode for Bash. Derived from code written by Jeff Sparkes (jsparkes@bnr.ca). */ /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc. This file is par
www.eeworm.com/read/188576/8526987

install

#!/bin/bash bindir="/usr/local/bin" mysqldatadir="/var/lib/mysql" echo "Installing files..." mkdir $bindir cp -bf myppp $bindir chmod 775 $bindir/myppp chown root $bindir/myppp chgrp root $bindir/my
www.eeworm.com/read/387771/8654324

pcan_make_devices

#!/bin/bash # # Copyright (C) 2001-2007 PEAK System-Technik GmbH # # linux@peak-system.com # www.peak-system.com # # This is a small script to generate device node entries at /dev for # PCAN devices.
www.eeworm.com/read/430746/8729808

sh sh2.sh

#!/bin/bash echo -e "type in the user name: \c" read user if grep $user /etc/passwd>>/tmp/null then echo "" else echo "$user do not exist in the system." exit fi if who | grep $user>>/tmp/null then wr
www.eeworm.com/read/359019/10169700

win32 readme.win32

mkhybrid can be compiled on Win9X/NT4 using Cygnus' cygwin available from: http://sourceware.cygnus.com/cygwin/ To build, start a "bash" shell (open a DOS/Command window, cd to the required directo
www.eeworm.com/read/281104/10263449

sms2html

#!/bin/bash # This script converts a received sms file into a html file. if [ $# -ne 1 ]; then echo "Usage: sms2html filename" exit 1 fi if grep "Alphabet:.*UCS" $1 >/dev/null; then ucs2="tr
www.eeworm.com/read/279175/10457814

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/279175/10457822

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/279175/10457825

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/278813/10505019

createmodule

#!/bin/bash [ ! "$1" ] && { echo "makemodule: create a new module in src/" echo "$0 " exit 1 } [ -e "$1.c" -o -e "$1.c" ] && { echo "module $1 already exists, so I refuse to over