代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/16793/690811
h ltcap.h
/* ltcap.h - Local declarations for termcap library. */
/* Copyright (C) 1999-2009 Free Software Foundation, Inc.
Bash is free software: you can redistribute it and/or modify
it under the term
www.eeworm.com/read/16793/691045
c pcomplete.c
/* pcomplete.c - functions to generate lists of matches for programmable completion. */
/* Copyright (C) 1999-2009 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again S
www.eeworm.com/read/16793/691180
sub comsub-posix3.sub
# parsing errors before bash-4.2
a=$(/bin/cat
www.eeworm.com/read/16793/691612
texi bashref.texi
\input texinfo.tex @c -*- texinfo -*-
@c %**start of header
@setfilename bashref.info
@settitle Bash Reference Manual
@c %**end of header
@setchapternewpage odd
@include version.texi
@copying
This
www.eeworm.com/read/16793/691634
h unionwait.h
/* unionwait.h -- definitions for using a `union wait' on systems without
one. */
/* Copyright (C) 1996 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
www.eeworm.com/read/16793/691657
changelog
7/27/2004
---------
[bash-3.0 released]
7/28
----
array.c
- in array_insert(), make sure the value to be added is non-NULL before
calling savestring() on it
builtins/res
www.eeworm.com/read/16793/691722
c hashcmd.c
/* hashcmd.c - functions for managing a hash table mapping command names to
full pathnames. */
/* Copyright (C) 1997-2009 Free Software Foundation, Inc.
This file is part of GNU Bash, the
www.eeworm.com/read/35675/1059586
perm_check
#!/bin/bash
# Using the old style test command
# filename: perm_check
file=./testing
if [ -d $file ]
then
echo "$file is a directory"
elif [ -f $file ]
then
if [ -r $file -a -w $file -a -x $file
www.eeworm.com/read/35675/1059595
args
#!/bin/bash
# Scriptname: args
# Script to test command line arguments
echo The name of this script is $0.
echo The arguments are $*.
echo The first argument is $1.
echo The second argument is $2.
ech
www.eeworm.com/read/35675/1059602
opts3
#!/bin/bash
# Program: opts3
# Using getopts -- Third try --
while getopts dq: options
do
case $options in
d) echo "-d is a valid switch ";;
q) echo "The argument for -q is $OPTARG";;