代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/385462/2588923
create_disk_image
#!/bin/bash
###############################################################################
##
## Copyright (C) International Business Machines Corp., 2005
## Author(s): Daniel Stekloff
www.eeworm.com/read/365273/2898015
sh convert.sh
#!/bin/bash
for i in `find ./ -name "*.c"`
do
sed '/TRACE/d' $i > temp
cp temp $i
done
www.eeworm.com/read/264113/4289410
sh convert.sh
#!/bin/bash
for i in `find ./ -name "*.c"`
do
sed '/TRACE/d' $i > temp
cp temp $i
done
www.eeworm.com/read/235758/14053768
agent tape.agent
#!/bin/bash
###############################################################################
# Tape hotplug agent for Linux 2.4 kernels
#
# Copyright (c) 2002 IBM Development Germany, Boeblingen
#
# th
www.eeworm.com/read/16793/691714
m4 aclocal.m4
dnl
dnl Bash specific tests
dnl
dnl Some derived from PDKSH 5.1.3 autoconf tests
dnl
AC_DEFUN(BASH_C_LONG_LONG,
[AC_CACHE_CHECK(for long long, ac_cv_c_long_long,
[if test "$GCC" = yes; then
ac_cv_c
www.eeworm.com/read/147336/12563691
m4 aclocal.m4
dnl
dnl Bash specific tests
dnl
dnl Some derived from PDKSH 5.1.3 autoconf tests
dnl
AC_DEFUN(BASH_C_LONG_LONG,
[AC_CACHE_CHECK(for long long, ac_cv_c_long_long,
[if test "$GCC" = yes; then
ac_cv_c
www.eeworm.com/read/235304/14075287
m4 aclocal.m4
dnl
dnl Bash specific tests
dnl
dnl Some derived from PDKSH 5.1.3 autoconf tests
dnl
AC_DEFUN(BASH_C_LONG_LONG,
[AC_CACHE_CHECK(for long long, ac_cv_c_long_long,
[if test "$GCC" = yes; then
ac_cv_c
www.eeworm.com/read/128421/5991125
make-rpm
#!/bin/bash -x
#########################################################################
# $Id: make-rpm,v 1.1 2001/12/08 15:59:50 bdenney Exp $
#######################################################
www.eeworm.com/read/16793/690593
rbash
6.10 The Restricted Shell
=========================
If Bash is started with the name `rbash', or the `--restricted' or `-r'
option is supplied at invocation, the shell becomes restricted. A
restrict
www.eeworm.com/read/35675/1059636
forloop
#!/bin/bash
# Scriptname: forloop
for pal in Tom Dick Harry Joe
do
echo "Hi $pal"
done
echo "Out of loop"