Removed unneeded custom shell script call.

This commit is contained in:
Bruce Momjian 1997-01-17 23:48:50 +00:00
parent 4defb8f393
commit aa91f930a4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# dumps all databases to standard output
# It also dumps the pg_user table
#
psql -l -A -q -t|unesc|cut -d"|" -f1 | grep -v '^template1$' | \
psql -l -A -q -t|cut -d"|" -f1 | grep -v '^template1$' | \
while read DATABASE
do
/bin/echo '\connect template1'