From aa91f930a43ac35b1bebaca90632e07503f8f4a1 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 17 Jan 1997 23:48:50 +0000 Subject: [PATCH] Removed unneeded custom shell script call. --- src/bin/pg_dump/pg_dumpall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dumpall b/src/bin/pg_dump/pg_dumpall index 854622043d..8eef5d36c2 100644 --- a/src/bin/pg_dump/pg_dumpall +++ b/src/bin/pg_dump/pg_dumpall @@ -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'