I am running a script on my PostgreSQL server:
psql db -f sql.sql
from bash or in a cron script.
bash
cron
It keeps
I was looking for this too, I found the way in a similar question on ServerFault:
psql -P pager=off
turns off the paging thing, without suppressing output.