Search Postgresql Archives

Re: multiple sql results to shell

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

 



On Oct 23, 2017, at 08:37, pgsql-general-owner@xxxxxxxxxxxxxx wrote:

psql ..... | while read a; do
#    some code
done

The only problem I find with this is that you can't pass variables out
of the while loop,

To get input from a file w/o a sub-shell,
you can put the input at the end of the loop:

====
#!/bin/sh                                                                                                                                                                                                                                     

cat > file <<EOF                                                                                                                                                                                                                              
ab                                                                                                                                                                                                                                            
cd                                                                                                                                                                                                                                            
ef                                                                                                                                                                                                                                            
EOF                                                                                                                                                                                                                                           
while read a; do
    b="$b $a"
    echo $b
done < file
====
-Randy

[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 Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]

  Powered by Linux