代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/225994/14505520
init sshd.init
#!/bin/bash
#
# Init file for OpenSSH server daemon
#
# chkconfig: 2345 55 25
# description: OpenSSH server daemon
#
# processname: sshd
# config: /etc/ssh/ssh_host_key
# config: /etc/ssh/ssh_host_key
www.eeworm.com/read/225994/14505526
old sshd.init.old
#!/bin/bash
#
# Init file for OpenSSH server daemon
#
# chkconfig: 2345 55 25
# description: OpenSSH server daemon
#
# processname: sshd
# config: /etc/ssh/ssh_host_key
# config: /etc/ssh/ssh_host_key
www.eeworm.com/read/123912/14606911
install
#!/bin/bash
DESTLIBDIR=/usr/local/lib
DESTHDDIR=/usr/local/include
REALNAME=libmckeyboard.so.1.0.0
SONAME=libmckeyboard.so.1
SHARELIB=libmckeyboard.so
STATICLIB=libmckeyboard.a
rm -f /lib/libmckeyboar
www.eeworm.com/read/119154/14838088
sh bughunt.sh
#! /bin/sh
# $Id: bughunt.sh $
# NB: If your sh does not support functions, then try
# /usr/local/bin/bash or /bin/ksh, if you have them.
#
# Hunt down compiler bugs that break gs.
#
# Usage:
www.eeworm.com/read/16793/690594
c hashlib.c
/* hashlib.c -- functions to manage and access hash tables for bash. */
/* Copyright (C) 1987,1989,1991,1995,1998,2001,2003,2005,2006,2008,2009 Free Software Foundation, Inc.
This file is part of
www.eeworm.com/read/16793/690672
c dngettext.c
/* dngettext.c - Implementation of the dngettext(3) function. */
/* Copyright (C) 1995-1997, 2000, 2001, 2002, 2005, 2006, 2008,2009 Free Software Foundation, Inc.
This file is part of GNU Bash.
www.eeworm.com/read/16793/690861
keep
# From: Seth Chaiklin
# To: chet@ins.CWRU.Edu
# Subject: bash functions (sorta)
#
# keep:
# usage: keep program
# declare the a program should be "kept". i.e. try to fg a stopped o
www.eeworm.com/read/16793/691044
h config-bot.h
/* config-bot.h */
/* modify settings or make new ones based on what autoconf tells us. */
/* Copyright (C) 1989-2009 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Agai
www.eeworm.com/read/16793/691161
sub array6.sub
# test cases for array quoting and escaping fixed post bash-3.2-release
oIFS="$IFS"
a=(a b c)
echo ${a[@]}
a2=("${a[@]/#/"-iname '"}")
recho "${a2[@]}"
echo "${dbg-"'hey'"}"
echo "${dbg-"hey"}"
ec
www.eeworm.com/read/16793/691252
sub exec5.sub
# try exec'ing a command that cannot be found in $PATH
shopt -s execfail
exec bash-notthere
# make sure we're still around
echo $?
# now we need to go away, but this should echo 'this is ohio-state'