代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/16793/690985
bash randomcard.bash
# The following prints a random card from a card deck.
#
# cribbed from the ksh93 book, example from page 70
#
# chet@po.cwru.edu
#
declare -i i=0
# load the deck
for suit in clubs diamonds hearts sp
www.eeworm.com/read/16793/690987
bash krand.bash
# Originally
#
# From: bsh20858@news.fhda.edu (Brian S Hiles)
# Newsgroups: comp.unix.shell
# Subject: Re: getting random numbers
# Date: 23 Jan 1997 23:27:30 GMT
# Message-ID:
www.eeworm.com/read/16793/690998
bash hanoi.bash
# Towers of Hanoi in bash
#
# cribbed from the ksh93 book, example from exercises on page 85
#
# Chet Ramey
# chet@po.cwru.edu
hanoi() # n from to spare
{
typeset -i nm1=$1-1
((nm1>0)) && han
www.eeworm.com/read/16793/690999
bash meta.bash
# meta.bash --- meta key frobnications
# Author: Noah Friedman
# Created: 1992-06-28
# Last modified: 1993-01-26
# Public domain
# Commentary:
# Code:
#:docstring meta:
#
www.eeworm.com/read/16793/691001
bash stty.bash
# stty.bash
# Author: Noah Friedman
# Created: 1992-01-11
# Last modified: 1993-09-29
# Public domain
# Conversion to bash v2 syntax done by Chet Ramey
# Commentary:
# Cod
www.eeworm.com/read/16793/691003
bash mktmp.bash
# mktmp.bash
# Author: Noah Friedman
# Created: 1993-02-03
# Last modified: 1993-02-03
# Public domain
# Conversion to bash v2 syntax done by Chet Ramey
# Commentary:
# Co
www.eeworm.com/read/16793/691004
bash prompt.bash
# prompt.bash
# Author: Noah Friedman
# Created: 1992-01-15
# Public domain
# $Id: prompt.bash,v 1.2 1994/10/18 16:34:35 friedman Exp $
# Commentary:
# Code:
#:docstring
www.eeworm.com/read/16793/691006
bash number.bash
# number.bash
# Author: Noah Friedman
# Created: 1993-02-22
# Last modified: 1993-04-01
# Public domain
# Conversion to bash v2 syntax done by Chet Ramey
# Commentary:
# C
www.eeworm.com/read/16793/691008
bash shcat.bash
# shcat.bash
# Author: Noah Friedman
# Created: 1992-07-17
# Last modified: 1993-09-29
# Public domain
# Conversion to bash v2 syntax done by Chet Ramey
# Commentary:
# Co
www.eeworm.com/read/16793/691009
bash string.bash
# string.bash --- bash emulation of string(3) library routines
# Author: Noah Friedman
# Created: 1992-07-01
# Last modified: 1993-09-29
# Public domain
# Conversion to bas