OSDN Git Service

Removed unneeded custom shell script call.
authorBruce Momjian <bruce@momjian.us>
Fri, 17 Jan 1997 23:48:50 +0000 (23:48 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 17 Jan 1997 23:48:50 +0000 (23:48 +0000)
src/bin/pg_dump/pg_dumpall

index 8546220..8eef5d3 100644 (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'