Is there a method to use multiple pipes when reading data with Gnuplot? The following will plot data received directly from the SQL statement.
plot "< sqlite3 tomato-rstats.db \"SELECT data FROM table;\""
What I'd like is to process that data before it reaches Gnuplot. I know that I could pipe the SQL data through the script, output to an intermediary file, and plot that file, but I'd rather skip the temp file. I imagined something along the lines of the following, but it's clearly not the correct syntax.
plot "< sqlite3 tomato-rstats.db \"SELECT data FROM table;\" | process.pl"
or
plot "< process.pl < sqlite3 tomato-rstats.db \"SELECT data FROM table;\""
Is this possible through some other syntax?