代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/339483/12231449
sh t-out.sh
#!/bin/bash
# t-out.sh
# Inspired by a suggestion from "syngin seven" (thanks).
TIMELIMIT=4 # 4 seconds
read -t $TIMELIMIT variable
www.eeworm.com/read/223165/14650893
up office.up
#!/bin/bash
route add -net 10.0.1.0 netmask 255.255.255.0 gw $5
www.eeworm.com/read/223165/14650895
up home.up
#!/bin/bash
route add -net 10.0.0.0 netmask 255.255.255.0 gw $5
www.eeworm.com/read/158872/5590040
inputrc
# My ~/.inputrc file is in -*- text -*- for easy editing with Emacs.
#
# Notice the various bindings which are conditionalized depending
# on which program is running, or what terminal is active.
#
#
www.eeworm.com/read/172553/9702585
sh uninstall.sh
#!/bin/bash
rm -rf /usr/local/share/Howdy/
rm /usr/local/bin/howdy
www.eeworm.com/read/267475/11177779
sh update_po_files.sh
#!/bin/bash
#cd po
for i in *.po
do
wget http://www.iro.umontreal.ca/translation/maint/wget/$i -O $i
done
www.eeworm.com/read/147336/12563361
inputrc
# My ~/.inputrc file is in -*- text -*- for easy editing with Emacs.
#
# Notice the various bindings which are conditionalized depending
# on which program is running, or what terminal is active.
#
#
www.eeworm.com/read/248191/12590069
html buildmin-9.html
How To Build a Minimal Linux System from Source Code: Bash
www.eeworm.com/read/300850/13889004
switch2std
#!/bin/bash
MAKEFILES=`find . -name Makefile.std`
for i in ${MAKEFILES} ; do
( cd `dirname ${i}` && rm -f Makefile && ln -sf Makefile.std Makefile )
done