On Tuesday 13 October 2009 01:22:02 Garrett Cooper wrote:
> +do_link() {
> + pfix=$1; shift
> + ln_opts=$1; shift
> + limit=$1; shift
any point in shifting ? be simpler to just use $1 $2 $3
> + cd ${pfix}link; \
> + while [ $i -lt $limit ]; do \
why the line continuation ?
> + (( lerrors++ ))
> + (( i++ ))
> + (( TST_COUNT++ ))
i think you want:
: $(( TST_COUNT += 1 ))
-mike
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference
_______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
