8 | | for db in $(psql -U postgres -l | grep trackinformation | cut -f 2 -d ' '); do psql -U postgres -l $db -A -t -c "select name, species, revision, kind, data_location, description_url, optparam from track where exhibit = 'public'" >> tracklist.dat; done; |
| 8 | for db in $(psql -U postgres -l | grep trackinformation | cut -f 2 -d ' '); \ |
| 9 | do psql -U postgres -l $db -A -t -c "select name, species, revision, kind, data_location, description_url, optparam from track where exhibit = 'public'" >> tracklist.dat; done; |