[TriLUG] Cool Linux phone, and grep question

Brad Jorsch anomie at users.sourceforge.net
Wed Jan 31 09:32:05 EST 2007


On Wed, Jan 31, 2007 at 08:45:50AM -0500, Tim Jowers wrote:
> Check out this OpenSource phone:
> http://linuxdevices.com/news/NS2986976174.html
> I need to get one to play with in the near future. I hope this will succeed
> more than J2ME has so far.

Nifty! Does it come in blue? How would non-"mouse" input work on that
thing?

I haven't been terribly impressed with J2ME either, although i do have a
few interesting games. The lack of floating point support is kind of
annoying.

> find . -name '*.c' | xargs grep "schedule("

I would usually use
  find . -name '*.c' -print0 | xargs -0 grep "schedule("
so filenames with spaces won't make it choke.



More information about the TriLUG mailing list