代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/223124/4813761
sub arith2.sub
# bash 3.2 apparently thinks that ++7 is 7 etc
( echo $(( --7 )) )
( echo $(( ++7 )) )
( echo $(( -- 7 )) )
( echo $(( ++ 7 )) )
#ash# ((++array[0] ))
#ash# echo 1 $array
#ash# (( ++ array[
www.eeworm.com/read/219228/4849076
update
#!/bin/bash
zip ../../../devel/share/CodeBlocks/wxsmith.zip *.xrc
mkdir -p ../../../devel/share/CodeBlocks/images/wxsmith > /dev/null 2> /dev/null
cp ./smithicons/* ../../../devel/share/CodeBlocks/
www.eeworm.com/read/215896/4900468
makedelayplot
#! /bin/bash
# Make a graph showing which packets have been successfully delivered.
# The x axis is the time of delivery
# The y axis is the end-to-end delay for the packet
# The input file doesn't
www.eeworm.com/read/213039/4933068
readme
James -
I found a couple of problems in my original patch, but I believe this one
works.
In order to use it:
1) Open a Cygwin console and:
Unpack the sources:
[bash-2.02]$ cd $ACE_
www.eeworm.com/read/203086/5042016
sh test_train.sh
#!/bin/bash
progdir="$1"
datafile="$2"
lrout="$3"
lrcorrect="$4"
if [ -z "$lrcorrect" ]; then
echo
echo "Usage: $0 ,"
echo
echo
www.eeworm.com/read/200501/5064836
down client.down
#!/bin/bash
# Copyright (c) 2005 by OpenVPN Solutions LLC
# Licensed under the GPL version 2
# First version by Jesse Adelman
# someone at boldandbusted dink com
# http://www.boldandbusted.com/
# P
www.eeworm.com/read/200501/5064837
up client.up
#!/bin/bash
# Copyright (c) 2005 by OpenVPN Solutions LLC
# Licensed under the GPL version 2
# First version by Jesse Adelman
# someone at boldandbusted dink com
# http://www.boldandbusted.com/
# P
www.eeworm.com/read/199943/5074540
sh randomtrain.sh
#! /bin/bash
#
# $Id: randomtrain.sh,v 1.3 2005/11/01 00:30:59 relson Exp $ #
#
# randomtrain -- bogofilter messages from files in random order
# and train if the result is wrong or u
www.eeworm.com/read/199943/5074542
sh scramble.sh
#! /bin/bash
#
# $Id: scramble.sh,v 1.3 2005/11/01 00:30:59 relson Exp $ #
#
# scramble -- split up files into entries assuming each entry
# starts with a given separator
#
www.eeworm.com/read/175748/5341895
compile
#!/bin/bash
export HADOOP_HOME=../../..
export CLASSPATH="$HADOOP_HOME/build/classes"
# so that filenames w/ spaces are handled correctly in loops below
IFS=
# add libs to CLASSPATH
for f in $HADO