I have simple python script (smazat.py) that generate some data
for i in range(50):
print i, i-20
I can make images in windows command line with following command
smazat.py | gnuplot -e "set term png;p '-'" > smazat.png
however when use gnuplot script with the same commands like this
smazat.py | gnuplot smazat.gp > smazat.png
it does not work. What's happening?