代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/185582/9027745
txt abs_guide_cn.txt
译者序
毫无疑问,UNIX/Linux最重要的软件之一就是shell,目前最流行的shell被称为<mark>Bash</mark>(Bourne Again Shell),几乎所有的Linux和绝大部分的UNIX都可以使用<mark>Bash</mark>。作为系统与用户之间的交互接口,shell几乎是你在UNIX工作平台上最亲密的朋友,因此,学好shell,是学习Linux/UNIX的的开始,并且它会始终伴随你的工作学习。
shel ...
www.eeworm.com/read/381158/9106936
readme
step to run:
1: compile it : type make
@: make
2: start rtlinux:
@: rtlinux start
3: start task:
@: ./task
4: use another bash, run tktest
@: ./tktest
www.eeworm.com/read/182126/9215496
cpvgalib
#!/bin/bash
mount /dev/hdb1 /mnt/hdb1
cp /usr/local/lib/libvga*.so.1.4.3 /mnt/hdb1/lib
www.eeworm.com/read/182126/9215648
v~
#!/bin/bash
mount /dev/hdb1 /mnt/hdb1
cp -y /usr/local/lib/libvga*.so.1.4.3 /mnt/hdb1/lib
www.eeworm.com/read/182121/9216196
sh test.sh
#!/bin/bash
gameinfo=`exteamname record.log`
team1=`echo $gameinfo | cut -d' ' -f1`
score1=`echo $gameinfo | cut -d' ' -f2`
team2=`echo $gameinfo | cut -d' ' -f3`
score2=`echo $gameinfo | cut -d' ' -
www.eeworm.com/read/374494/9402884
tst-pwck
#!/bin/bash
export LANG=C
export LC_ALL=C
TEMPDIR=`mktemp -d tests.XXXXXX`
cat $TEMPDIR/passwd
bin:x:1:1:bin:/bin:/bin/bash
daemon:x:2:2:Daemon:/sbin:/bin/bash
lp:x:4:7:Printing daemon:/va
www.eeworm.com/read/366402/9817749
replace
#!/bin/bash
str=$1
nstr=$2
shift
shift
while [ ! "$1" = "" ]; do
echo \'$1\'
sed s/$str/$nstr/ $1 >$1.n
mv $1.n $1
shift
done;
www.eeworm.com/read/365809/9845708
showme
#!/bin/bash
BR=${1:-"br549"}
while true;
do
brctl show
brctl showstp $BR
brctl showmacs $BR
sleep 5
done