代码搜索:BASH
找到约 5,321 项符合「BASH」的源代码
代码结果 5,321
www.eeworm.com/read/144212/5753040
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/144212/5753042
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/144212/5753044
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/144212/5753045
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
www.eeworm.com/read/144212/5753047
bash require.bash
# require.bash
# Author: Noah Friedman
# Created: 1992-07-08
# Last modified: 1993-09-29
# Public domain
# Commentary:
# These functions provide an interface based on the
www.eeworm.com/read/144212/5753048
bash source.bash
# source.bash
# Author: Noah Friedman
# Created: 1992-05-17
# Last modified: 1993-09-29
# Public domain
# Commentary:
# Code:
#:docstring source:
# Usage: source file ...
www.eeworm.com/read/144212/5753050
bash aref.bash
# aref.bash --- pseudo-array manipulating routines
# Author: Noah Friedman
# Created 1992-07-01
# Last modified: 1993-02-03
# Public domain
# Conversion to bash v2 syntax d
www.eeworm.com/read/126411/6017662
bash notify.bash
trap _notify CHLD
NOTIFY_ALL=false
unset NOTIFY_LIST
unalias false
false()
{
return 1
}
_notify ()
{
local i j
local newlist=
if $NOTIFY_ALL
then
return # let bash take care of this itself
www.eeworm.com/read/126411/6017663
bash jj.bash
jj ()
{
p=$(jobs $1);
echo $p
case "$p" in
[*) echo matches '[*'
;;
*) echo not a match\?
;;
esac
}
www.eeworm.com/read/126411/6017671
bash_profile
# Startup file for bash login shells.
#
default_dir=/usr/local/lib/
if [ "$PS1" ]; then
PS1='\u@\h(\#)$ '
ignoreeof=3
fi
LOGIN_SHELL=true
# If the user has her own init file, then use that one,