[GroupDAV] New GroupDAV connector version

Benjamin Long groupdav@opengroupware.org
Tue, 19 Dec 2006 10:19:42 -0500


As if I'd post something like this to a mailing list without testing it...
took me 15 min to write that!
Is that pathetic or what? :D

On Tuesday 19 December 2006 9:58 am, Adam Tauno Williams wrote:
> > #!/bin/bash
> > COUNTER=0
> > while [ "$COUNTER" -lt "1000" ]
> >   do
> >   echo "Thank You!"
>
> Actually that needs to be: echo 'Thank You!'  - or the bang symbol will
> freak out bash. ;)
>
> But, otherwise,  ditto!
>
> >   COUNTER=$(($COUNTER+1))
> > done