[Tinyos-help] [Tinyos-hlep] CLASSPATH new problem

2012-05-08 Thread Li, Haixia-OSU Stillwater
Hello all, I used to set the CLASSPAHT without any problem, but I have not use it for one year. Recently, when I want to use tinyos, and set the CLASPATH, it shows a problem. $export CLASSPATH=C:\cygwin\opt\tinyos-2.x\support\sdk\java\tinyos.jar;. bash: . filename argument required .: usage: .

Re: [Tinyos-help] [Tinyos-hlep] CLASSPATH new problem

2012-05-08 Thread Michael Schippling
You need quotes around the actual paths to make the shell ignore the semi-colon: export CLASSPATH=C:\...\java\tinyos.jar;. MS Li, Haixia-OSU Stillwater wrote: Hello all, I used to set the CLASSPAHT without any problem, but I have not use it for one year. Recently, when I want to use

Re: [Tinyos-help] [Tinyos-hlep] CLASSPATH new problem

2012-05-08 Thread Li, Haixia-OSU Stillwater
Thanks. Your suggestion works. From: Michael Schippling [sc...@santafe.edu] Sent: Tuesday, May 08, 2012 12:14 PM To: Li, Haixia-OSU Stillwater Cc: tinyos-help@millennium.berkeley.edu Subject: Re: [Tinyos-help] [Tinyos-hlep] CLASSPATH new problem You need