Search Postgresql Archives

Better way to process records in bash?

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

 



(This might be a bash question instead of a PG question, or it might be an A/B question.)

I need to process table records in a bash script.  Currently, I read them using a while loop and redirection.  The table isn't that big (30ish thousand rows), and performance is adequate, but am always looking for "better".

Here's the current code:
declare f1 f3 f8
while IFS='|' read f1 f3 f8; do
    something f8 f3 f1
done < <(psql -XAt -c "select f1, f3, f8 from some.table_name;")

--
Death to America, and butter sauce.
Iraq lobster!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]

  Powered by Linux