Hacker News new | ask | show | jobs
by herge 3932 days ago
Guff can be used from the command line in a pipe?
2 comments

Apparently so can gnuplot, however the syntax is really awful.

    awk 'BEGIN{ for(x=-5;x<6.5;x+=0.1){printf("%s\t%f\n", x, sin(x))} }' \
      | gnuplot -p -e "set term dumb size 89,30 aspect 1;plot '<cat'"
Gnuplot really isn't made for that kind of usage, so guff does fill a valuable niche. Though you could also just write a wrapper around gnuplot with an interface that works better for command line usage(this probably already exists).
You could accomplish this in gnuplot, but guff does have some nice defaults that don't require you to write a script before you do the plotting.