代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/223165/14650898
sh openvpn-startup.sh
#!/bin/bash
# A sample OpenVPN startup script
# for Linux.
# openvpn config file directory
dir=/etc/openvpn
# load the firewall
$dir/firewall.sh
# load TUN/TAP kernel module
modprobe tun
# enable
www.eeworm.com/read/221865/14717280
sh makedist.sh
#!/bin/bash
# This script creates a source tarball. Unfortunately I can't
# figure out a way to simulate 'make dist' with SCons :(
PACKAGE=grftool
VERSION=0.9.0
TYPE=bz2
# Uncomment the next line if
www.eeworm.com/read/217561/14958319
ipvsadm-restore
#!/bin/bash
# ipvsadm-restore - Restore IPVS rules
#
# A very simple wrapper to restore IPVS rules
# Inspired by ipchains-save.
#
# Version: $Id: ipvsadm-restore,v 1.3 2002/08/10 0
www.eeworm.com/read/15240/442276
ltypes
#!/bin/bash
if [ $# -ne 1 ]
then
echo "usage: Ltypes filename" >&2
exit 2
fi
FILE="$1"
#TMPFILE='mktemp "${FILE}.XXXXXX"' || exit 1
TMPFILE=${FILE}.`date "+%s"`
touch $TMPFILE || exit 1
# C
www.eeworm.com/read/16793/690604
c makepath.c
/* makepath.c - glue PATH and DIR together into a full pathname. */
/* Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bas
www.eeworm.com/read/16793/690622
c mailstat.c
/* mailstat.c -- stat a mailbox file, handling maildir-type mail directories */
/* Copyright (C) 2001 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Bas
www.eeworm.com/read/16793/690634
c eaccess.c
/* eaccess.c - eaccess replacement for the shell, plus other access functions. */
/* Copyright (C) 2006-2010 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
www.eeworm.com/read/16793/690657
c mktime.c
/* mktime - convert struct tm to a time_t value */
/* Copyright (C) 1993-2002 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
Contributed by Paul Eggert (
www.eeworm.com/read/16793/690661
c netopen.c
/*
* netopen.c -- functions to make tcp/udp connections
*
* Chet Ramey
* chet@ins.CWRU.Edu
*/
/* Copyright (C) 1987-2002 Free Software Foundation, Inc.
This file is part of GNU Bash, the
www.eeworm.com/read/16793/690671
c bindtextdom.c
/* bindtextdom.c - Implementation of the bindtextdomain(3) function */
/* Copyright (C) 1995-1998, 2000, 2001, 2002, 2005-2009 Free Software Foundation, Inc.
This file is part of GNU Bash.
Ba