[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Learning rrdtool



On 2006-12-18 15:51:25 +0200, Johann Spies wrote:
> zsh %  rrdtool graph speed.png                                 \
> >          --start 920804400 --end 920808000               \
> >          DEF:myspeed=test.rrd:speed:AVERAGE              \
> >          LINE2:myspeed#FF0000
> zsh: no matches found: LINE2:myspeed#FF0000
> 
> What is wrong here?  I have just copied the examples from the tutorial.

In zsh, # is a special character (well, this depends on options).
You need to escape it, e.g. by writing

  LINE2:myspeed\#FF0000

or

  'LINE2:myspeed#FF0000'

-- 
Vincent Lefèvre <vincent@vinc17.org> - Web: <http://www.vinc17.org/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.org/blog/>
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



Reply to: