Re: netgear ma311 failures (wi0 driver)
Mike Jackson <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.mobile |
|---|---|
| Message-ID | <[email protected]> |
ext Cliff L. Biffle ([email protected]) wrote: > > On a related note, can a bourne shell guru drop me a line and tell me how to > for-loop over -lines- in a file instead of -words- in a file? I've tried > changing the delimiter characters with no luck. :-) Hi, Make a text file one word per line called TEXT. #!/bin/sh for x in `cat TEXT` do echo -e "$x\n" done -- mike _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mobile To unsubscribe, send any mail to "[email protected]"