[PKGNG] i386-wine-1.5.30

2013-05-16 Thread David Naylor
Hi, Pkgng packages are available for i386-wine-1.5.30 [1] at local-distfiles [2]. Currently packages are available for FreeBSD 8 and 9 [3][4]. For previous version of i386-wine replace 'latest' with the version number. To install the port try one of the following options: - Method 1 (Quic

Re: Hot Swapping SATA drive?

2013-05-16 Thread Warren Block
On Tue, 14 May 2013, RW wrote: On Tue, 14 May 2013 07:45:21 -0400 Robert Huff wrote: Ronald F. Guilmette writes: 3) Assuming that I want to do this stuff, what BIOS options should I be setting or unsetting on the motherboard? I am unable to check the BIOS settings on that MB (wh

Re: Hot Swapping SATA drive?

2013-05-16 Thread Robert Huff
Warren Block writes: > > I don't there there is any difference between SATA and eSATA above the > > physical layer. I'm not sure what that setting would do. > > At a guess, it could connect one of the internal SATA ports to > the eSATA connector. That's the way mine works; on the ot

Errors building vortex port

2013-05-16 Thread C. L. Martinez
Hi all, I am trying to build vortex port using poudriere in a FreeBSD 9.1 amd64 host, but it fails: === ===> Returning to build of vortex-2.9.0.59 ===> vortex-2.9.0.59 depends on file: /usr/local/bin/libnet11-config

check variable content size in sh script

2013-05-16 Thread Joe
Hello Have script that has max size on content in a variable. How to code size less than 51 characters? Thanks ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "

Re: check variable content size in sh script

2013-05-16 Thread Tim Daneliuk
On 05/16/2013 10:08 AM, Joe wrote: Hello Have script that has max size on content in a variable. How to code size less than 51 characters? FOO="Some string you want to check length of" FOOLEN=`echo $FOO | wc | awk '{print $3}'` You can then use $FOOLEN in a conditional. -- --

Re: check variable content size in sh script

2013-05-16 Thread Dan Nelson
In the last episode (May 16), Tim Daneliuk said: > On 05/16/2013 10:08 AM, Joe wrote: > > Hello > > > > Have script that has max size on content in a variable. > > How to code size less than 51 characters? > > > > FOO="Some string you want to check length of" > FOOLEN=`echo $FOO | wc | awk '{print

Re: check variable content size in sh script

2013-05-16 Thread markham breitbach
something like this: #!/bin/sh if [ $# -lt 1 ] ; then echo "put a nickel in the slot, pal!" exit 1; fi NUMCHARS=`echo $1 | wc -m` if [ $NUMCHARS -lt 51 ] ; then echo "You input "$NUMCHARS" characters." exit 0 else echo "whoa sailor I can't take all that!" exit 1 fi On 13-05-16 9:08 AM, Joe wrote

Re: check variable content size in sh script

2013-05-16 Thread Teske, Devin
On May 16, 2013, at 8:28 AM, Tim Daneliuk wrote: > On 05/16/2013 10:08 AM, Joe wrote: >> Hello >> >> Have script that has max size on content in a variable. >> How to code size less than 51 characters? >> > > FOO="Some string you want to check length of" > FOOLEN=`echo $FOO | wc | awk '{print

Re: check variable content size in sh script

2013-05-16 Thread Tim Daneliuk
On 05/16/2013 10:45 AM, Dan Nelson wrote: In the last episode (May 16), Tim Daneliuk said: On 05/16/2013 10:08 AM, Joe wrote: Hello Have script that has max size on content in a variable. How to code size less than 51 characters? FOO="Some string you want to check length of" FOOLEN=`echo $F

Re: check variable content size in sh script

2013-05-16 Thread Teske, Devin
On May 16, 2013, at 9:06 AM, Teske, Devin wrote: > > On May 16, 2013, at 8:28 AM, Tim Daneliuk wrote: > >> On 05/16/2013 10:08 AM, Joe wrote: >>> Hello >>> >>> Have script that has max size on content in a variable. >>> How to code size less than 51 characters? >>> >> >> FOO="Some string you

Re: check variable content size in sh script

2013-05-16 Thread Teske, Devin
On May 16, 2013, at 9:27 AM, Teske, Devin wrote: On May 16, 2013, at 9:06 AM, Teske, Devin wrote: On May 16, 2013, at 8:28 AM, Tim Daneliuk wrote: On 05/16/2013 10:08 AM, Joe wrote: Hello Have script that has max size on content in a variable. How to code size less than 51 characters? FOO=

Re: List Spam Filtering

2013-05-16 Thread Bruce Cran
On 11/05/2013 02:34, Julian H. Stacey wrote: Good question. I don't know why. I wish all were, it would keep spam out. There have been some discussions about this in the past. freebsd-questions doesn't require subscribing to avoid people who may be unfamiliar with mailing lists being put off

Re: List Spam Filtering

2013-05-16 Thread Julian H. Stacey
Bruce Cran wrote: > On 11/05/2013 02:34, Julian H. Stacey wrote: > > Good question. I don't know why. I wish all were, it would keep spam out. > > There have been some discussions about this in the past. > freebsd-questions doesn't require subscribing to avoid people who may be > unfamiliar with

Re: List Spam Filtering

2013-05-16 Thread Erich Dollansky
Hi, On Thu, 16 May 2013 23:05:33 +0100 Bruce Cran wrote: > On 11/05/2013 02:34, Julian H. Stacey wrote: > > Good question. I don't know why. I wish all were, it would keep > > spam out. > > There have been some discussions about this in the past. > freebsd-questions doesn't require subscribing