代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/303608/3810001
makefile
# TODO: set this appropriately for your local toolchain
#SHELL=C:\CYGWIN_REP\dwn_071004\bin\BASH.exe
CROSS_COMPILE=arm-elf-
#CROSS_COMPILE = arm-softfloat-linux-gnu-
TOOLCHAIN=gcc
BOOTSTRAP_PATH=../
www.eeworm.com/read/303608/3810027
makefile
# TODO: set this appropriately for your local toolchain
#SHELL=C:\CYGWIN_REP\dwn_071004\bin\BASH.exe
CROSS_COMPILE=arm-elf-
#CROSS_COMPILE = arm-softfloat-linux-gnu-
TOOLCHAIN=gcc
BOOTSTRAP_PATH=../
www.eeworm.com/read/444684/1731033
makefile
# TODO: set this appropriately for your local toolchain
#SHELL=C:\CYGWIN_REP\dwn_071004\bin\BASH.exe
CROSS_COMPILE=arm-none-linux-gnueabi-
#CROSS_COMPILE = arm-softfloat-linux-gnu-
TOOLCHAIN=gcc
BOO
www.eeworm.com/read/444684/1731035
makefile
# TODO: set this appropriately for your local toolchain
#SHELL=C:\CYGWIN_REP\dwn_071004\bin\BASH.exe
CROSS_COMPILE=arm-none-linux-gnueabi-
#CROSS_COMPILE = arm-softfloat-linux-gnu-
TOOLCHAIN=gcc
BOO
www.eeworm.com/read/444684/1731068
makefile
# TODO: set this appropriately for your local toolchain
#SHELL=C:\CYGWIN_REP\dwn_071004\bin\BASH.exe
CROSS_COMPILE=arm-elf-
#CROSS_COMPILE = arm-softfloat-linux-gnu-
TOOLCHAIN=gcc
BOOTSTRAP_PATH=../
www.eeworm.com/read/440773/1789688
make-tests
#!/bin/bash
#DIR="Tests/"
DIR=""
for x in ${DIR/}rdf-test-*.n3
do
B="$(basename $x .n3)"
N="${B#rdf-test-}"
R="${DIR}rdf-result-$N.nt"
echo " ."
done
www.eeworm.com/read/440317/1798976
init ospf6d.init
#!/bin/bash
#
# chkconfig: - 16 84
# description: An OSPF routing engine for use with Zebra and IPv6
#
# processname: ospf6d
# config: /etc/ospf6d.conf
# source function library
. /etc/rc.d/init.d/fu
www.eeworm.com/read/424983/2010980
sh add_message.sh
#!/bin/bash
# $Id: add_message.sh 9565 2006-10-17 09:23:00Z nijel $
#
# Shell script that adds a message to all message files (Lem9)
#
# Example: add_message.sh '$strNewMessage' 'new message contents
www.eeworm.com/read/407756/2258904
hour
#!/bin/bash
# Scriptname: hour
let hour=0
until (( hour > 24 )) # or [ $hour -gt 24 ]
do
case "$hour" in
[0-9]|1[0-1]) echo "Good morning!"
;;
12) echo "Lunch time."
;;
1[3-7]) echo "Siesta
www.eeworm.com/read/407519/2262534
sh parallel_poisson_cube.sh
#!/bin/bash
outfile=parallel_poisson_cube.dat
num_procs=4
iter=1
num_cells=30
echo "Parallel Poisson" > $outfile
echo "Processes Time" >> $outfile
for (( i=1 ; i