代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/297233/8039338
x-lynx
# /bin/cc is hopelessly broken, so we must use /bin/gcc instead.
CC = $(OLDCC)
OLDCC = /bin/gcc
# /bin/sh is too buggy, so use /bin/bash instead.
SHELL = /bin/bash
www.eeworm.com/read/397090/8069240
sh arg_test.sh
#!/bin/bash
#echo "print args : while "
#while [ -n "$1" ]
#do
# echo "$1"
# shift
#done
echo "print args : until "
until [ -z "$1" ]
do
echo "$1"
shift
done
www.eeworm.com/read/397085/8069357
sh arg_test.sh
#!/bin/bash
#echo "print args : while "
#while [ -n "$1" ]
#do
# echo "$1"
# shift
#done
echo "print args : until "
until [ -z "$1" ]
do
echo "$1"
shift
done
www.eeworm.com/read/142768/12922901
sh-install
#!/bin/bash
make clean &&
./configure &&
make &&
make install &&
tar xvfz scripts.tar.gz 2>/dev/null
www.eeworm.com/read/329257/12967015
txt ch5.txt
Chapter 5
-------------------------------------
Read Characters from the Keyboard and
Save Them as a String Variable
-------------------------------------
#!/bin/bash
clear
echo " "
echo "En
www.eeworm.com/read/139695/13139032
genlog
#!/usr/bin/bash
mkdir -p ctl
cd ctl
rm -f *
nawk -f ../genlog.awk /dev/null
cd ..
www.eeworm.com/read/137932/13277775
txt visual-bell.txt
闪光警告 mini-Howto
Alessandro Rubini, rubini@linux.it
v2.2, 11十一月 1997
____________________________________________________
www.eeworm.com/read/321496/13403970
showme
#!/bin/bash
BR=${1:-"br549"}
while true;
do
brctl show
brctl showstp $BR
brctl showmacs $BR
sleep 5
done