代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/404558/11482755
ipaddr
#!/bin/bash
ifconfig eth0|grep -A 1 eth0 |grep inet|cut -d: -f2|cut -d' ' -f1
www.eeworm.com/read/404558/11482760
caseselect
#!/bin/bash
#caseselect
echo -n "enter a number from 1 to 5:"
read ANS
case $ANS in
1) echo "you select 1"
;;
2) echo "you select 2"
;;
3) echo "you select 3"
;;
4) echo "you select 4"
;
www.eeworm.com/read/404473/11484833
txt snort.txt
1.简介
在网络日益普及的今天,网络安全变的越来越重要,作为网络安全的一个重要组成部分网络入侵检测系统(Network Intrusion Detection System,NIDS)也越来越显示出其重要性。NIDS用来监视网络数据流动情况,当入侵发生时能够提供报警。现在已经出现了很多商业的NIDS,但是它们大多比较复杂,比较难以掌握,而且比较昂贵,比较小的公司无法承受。本文将介绍一个出色 ...
www.eeworm.com/read/157975/11653036
txt beginning unix chapter 14.txt
Chapter 14
--------------------------------------
#!/bin/bash
# func
# A simple function
repeat() {
echo -n 揑 don抰 know $1 $2
www.eeworm.com/read/346743/11725612
txt shell编程.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/255173/12096935
copy
#!/bin/bash
echo "Start cp s3c2410ps.o to /home/lby"
echo "please wait ......"
echo "EVOC TAX Welcome your! "
cp s3c2410ps.o /home/lby/ -f
echo "copy end "
www.eeworm.com/read/341017/12113606
readme
sptunnel README
The sptunnel program is designed to work as an SSL encryption wrapper
between remote client and local or remote server. It can be used to
add SSL functionality to commonly daemons
www.eeworm.com/read/339483/12230385
sh ex50.sh
#!/bin/bash
WIDTH=40 # 40 columns wide.
b=`ls /usr/local/bin` # Get a file listing...
echo $b | fmt -w $WIDTH
# Could also have been done by
# echo $b | fold - -s -w $W
www.eeworm.com/read/339483/12230690
sh unset.sh
#!/bin/bash
# unset.sh: Unsetting a variable.
variable=hello # Initialized.
echo "variable = $variable"
unset variable # Unset.
www.eeworm.com/read/339483/12231027
html ioredirintro.html
A Detailed Introduction to I/O and I/O Redirection