代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/35675/1059622
greet
#!/bin/bash
# Scriptname: greet
for name in $* # same as for name in $@
do
echo Hi $name
done
www.eeworm.com/read/35675/1059638
53 example14.53
#!/bin/bash
for person in bob jim joe sam
do
mail $person < memo
done &
www.eeworm.com/read/239312/4602432
greet
#!/bin/bash
# Scriptname: greet
for name in $* # same as for name in $@
do
echo Hi $name
done
www.eeworm.com/read/239312/4602448
53 example14.53
#!/bin/bash
for person in bob jim joe sam
do
mail $person < memo
done &
www.eeworm.com/read/318733/3563503
sh test_suite_builder.sh
#!/bin/bash
#***************************************************************************
# test_suite_builder.sh
# --------------------------------------
# Date : Sun Sep 16 12
www.eeworm.com/read/311226/3686139
sh serial.sh
#!/bin/bash
source func.sh
rm manifest.ttl
createManifest "Serialization"
www.eeworm.com/read/289075/3996019
sh start_meter.sh
#!/bin/bash
TREND=trend-20050723/trend
FIFOPATH=/tmp/
# D X Bl
www.eeworm.com/read/440773/1791496
sh serial.sh
#!/bin/bash
source func.sh
rm manifest.ttl
createManifest "Serialization"
www.eeworm.com/read/407756/2258894
greet
#!/bin/bash
# Scriptname: greet
for name in $* # same as for name in $@
do
echo Hi $name
done
www.eeworm.com/read/407756/2258910
53 example14.53
#!/bin/bash
for person in bob jim joe sam
do
mail $person < memo
done &