Strange behavior

From: "Bruno Almeida do Lago" <teolupus(at)gmail(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Strange behavior
Date: 2006-01-06 17:26:27
Message-ID: 43bea857.3c1aed03.4110.ffffd904@mx.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello my friends!

I was making a pretty simple script to export our databases, and found a
strange (funny) behavior of psql (or bash?).

[psql8(at)xxxx]$ psql -Atl | cut -d"|" -f1 | grep -v template
Db_1
Db_2
Db_3
Db_4

The databases name were changed due privacy reasons (our client database),
but as you can see the command worked.

Now, when I come with the bash script:

#!/bin/bash

imprime () {
echo `date +"%d/%m/%y %H:%M:%S |"` $*
}

BANCOS=`psql -Atl | cut -d"|" -f1 | grep -v template`
for BANCO in $BANCOS; do
imprime "Inicio do backup da base $BANCO"
done

[psql8(at)webix backup_psql8]$ ./backup.sh
psql: could not send startup packet: Broken pipe

Any clues????

Best Regards,
Bruno Almeida do Lago

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Trent Shipley 2006-01-06 17:31:49 Relational Inheritance Features.
Previous Message Tom Lane 2006-01-06 17:26:26 Re: Indexes works only on miss