代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/426781/6789793
example dialup.sh.example
#!/bin/bash
#
# This script is called from VDR to start/stop dialup-network
#
# argument 1: wanted action, one of start,stop
#
RUN="/var/tmp/vdr.dialup.run"
action="$1"
case "$action" in
up)
up p
www.eeworm.com/read/173997/9613951
mudslinger
#!/bin/bash
# testing script for cryptmount (compiled with -DTESTING)
# $Revision: 125 $, $Date: 2006-09-22 20:39:18 +0100 (Fri, 22 Sep 2006) $
# RW Penney, December 2005
TMPDIR=/tmp/cm-$$
CM=./crypt
www.eeworm.com/read/173430/9658725
testcases sh.testcases
# try running this with bash, ksh, ash, and hush.
# simple quoting rules.
echo a b
echo "a b"
echo a "" b
echo a '' b
echo hello?
echo "hello?"
echo t* hello
echo t\* hello
# quick and painless ex
www.eeworm.com/read/172553/9702559
howdy
#!/bin/bash
cd /usr/local/share/
case $1 in
"s")
clear
java Howdy.Howdy s
;;
*)
clear
echo "Run this script with the 's' argument next time to run the server."
echo
java Howdy.Howdy
;;
esac
www.eeworm.com/read/170860/9784008
sh generator.sh
#!/bin/bash
# $Id: generator.sh,v 2.0 2003/11/18 15:20:44 nijel Exp $
#
# Shell script that adds a new function file using a template. Should not be called directly
# but instead by template_Generator
www.eeworm.com/read/170860/9784012
sh template_generator.sh
#!/bin/bash
# $Id: template_generator.sh,v 2.0 2003/11/18 15:20:45 nijel Exp $
#
# Shell script that adds a new mimetype with transform function.
#
# The filename should contain either 'mimetype_subty
www.eeworm.com/read/170860/9784041
sh template_generator_mimetype.sh
#!/bin/bash
# $Id: template_generator_mimetype.sh,v 2.0 2003/11/18 15:20:45 nijel Exp $
#
# Shell script that adds a new mimetype without transform function.
#
# The filename should contain either 'mi
www.eeworm.com/read/147336/12563693
h rlstdc.h
/* stdc.h -- macros to make source compile on both ANSI C and K&R C
compilers. */
/* Copyright (C) 1993 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
www.eeworm.com/read/147336/12563747
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-2004 Free Software Foundation, Inc.
This file is part of th