Re: [9fans] off-topic: why linux lost the desktop

2012-10-18 Thread yard-ape
> http://tirania.org/blog/archive/2012/Aug-29.html If developmental stability was all it took to attract third party developers then why didn't FreeBSD "win the desktop" a decade ago? Or indeed Plan 9 (I suppose this is reductio)?

Re: [9fans] awk reading?

2011-12-19 Thread yard-ape
arn...@skeeve.com wrote: >I have to toot my own horn a bit: > >http://www.gnu.org/software/gawk/manual/ > >The manual is careful to distinguish standard awk from gnu awk >features. > >If someone is up to porting gawk 4.0 to Plan 9, I'd be interested to >help! > >Thanks, > >Arnold Mr. Robbins' boo

[9fans] rc and pmake

2011-03-05 Thread yard-ape
Anyone experienced definining pmake's ".SHELL" target as rc (the standalone)? Mine keeps exiting at every non-zero return status. And I'm getting tired of reading the pmake manuals (well written as they are). This is on FreeBSD 8.1. -Derek

Re: [9fans] Sed label handling inconsistency

2010-06-08 Thread yard-ape
erik quanstrom wrote: > > without having access to a unix machine right now, i'm guessing that > > the code at jtcommon should replace > > if(*cp == '\0') > > with > > if(*cp == '\0' || *cp == ';') > > > > at lines 428. similar change at line 328. > > sorry, fat fingers. 428 and 438. >

[9fans] Sed label handling inconsistency

2010-06-08 Thread yard-ape
P9P sed gives me the error "Label too long" on: % echo foo | sed 's/./&/;ta;b;:a;s//*/' but not on: % echo foo | sed 's/./&/ ta b :a s//*/' As though the label commands require immediate newlines. Anyone else experience this?

[9fans] Binary File split

2010-05-07 Thread Yard Ape
How might I split a file into pieces specified by size? split(1) lets me specify lines and regex contexts as delimiters, but what if I want a 40MB file split up into 1.44MB chunks, say?

Re: [9fans] p9p funny

2009-12-29 Thread yard-ape
erik quanstrom wrote: > > ; flag v && echo true > flag v && echo true > ; ed .rcrc > ed .rcrc > 900 > 1 > 1 > if (test -e /etc/rcrc) > q > q > It looks like you're you're using the Rakitzis rc; is readline involved?

Re: [9fans] non greedy regular expressions

2008-11-30 Thread Yard Ape
"Rudolf Sykora" wrote: > I have a file say like this > > ABC asassadfasdf asdfasdf asdfasdf CBA hhjjioioioi > sodifs > sdfsd > ABC > dasdfas aasdfa > njnjn CBA > > and I want to get > > ' asassadfasdf asdfasdf asdfasdf ' > 'dasdfas aasdfa' > 'njnjn' > > ...i.e. delimited with AB