代码搜索:bash

找到约 5,321 项符合「bash」的源代码

代码结果 5,321
www.eeworm.com/read/366702/2878187

c 991112-1.c

/* This code was miscompiled at -O3 on x86. Reported by Jim Meyering; distilled from bash. */ int rl_show_char (int c) { return 0; } int rl_character_len (int c, int pos) { return isprint (c)
www.eeworm.com/read/357226/3027770

sh imagecheck.sh

#!/bin/bash grep "\$images" images.inc | sed "s/.*= '//g" | sed "s/';//g" | sort | uniq > images.file find images -type f -name "*" | fgrep -v "CVS" | sed "s/images\///g" | sort > images.dir echo "fi
www.eeworm.com/read/263726/4299527

sh test_rib1.sh

#!/usr/bin/env bash # # $XORP: xorp/bgp/harness/test_rib1.sh,v 1.22 2006/09/28 15:52:26 zec Exp $ # # # Test basic BGP and RIB interaction. Note that all the tests are run twice # once with the RIB
www.eeworm.com/read/261925/4319244

sh bulktrain.sh

#!/bin/bash cd $HOME/spambayes/active/spambayes rm -f tmpdb 2>/dev/null time /usr/bin/python2.2 bulkgraph.py \ -d tmpdb \ -e $HOME/Mail/everything/ \ -s $HOME/Mail/spam \ -s $HOME/Mail/newspam \ &
www.eeworm.com/read/158865/5593965

sh m88k-move.sh

#!/bin/sh # # If your shell doesn't support functions (true for some BSD users), # you might try using GNU's bash. # #ident "@(#) m88k-move.sh 1-Sep-92" # # This file provided by Data General, Februar
www.eeworm.com/read/195484/8151010

defs check.defs

#!/bin/bash LANG=C test -z "$srcdir" && srcdir=. status=0 get_pango_syms='nm "$so" | grep " T " | cut -d" " -f3' if [ "`uname -s`" = "Linux" ]; then get_pango_syms='objdump -t "$so" | sed -n "/.*g
www.eeworm.com/read/170860/9784283

sh add_message.sh

#!/bin/bash # $Id: add_message.sh,v 2.1 2005/09/24 08:52:18 nijel Exp $ # # Shell script that adds a message to all message files (Lem9) # # Example: add_message.sh '$strNewMessage' 'new message cont
www.eeworm.com/read/268797/11121367

sh dbg-test2.sh

#!../../bash # Note: no CVS Id line since it would mess up regression testing. # This code is used for various debugger testing. fn1() { echo "fn1 here" x=5 fn3 } fn2() { name="f
www.eeworm.com/read/268797/11121566

sh skip.sh

#!../../bash # Note: no CVS Id line since it would mess up regression testing. # This code is used for various debugger testing. fn1() { echo "fn1 here" x=5 fn3 } fn2() { name="f
www.eeworm.com/read/236244/14024303

sh string.functions.sh

#!/bin/bash # function strcat # Usage: strcat s1 s2 function strcat () { local s1_val s2_val s1_val=${!1} # indirect variable expansion s2_val=${!2}