1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

More >&1 cleanups

This commit is contained in:
Bruce Momjian
2000-03-25 14:44:42 +00:00
parent 3df65f8499
commit 1aecb8d2ff
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
foreach s (*.sql)
echo "===> $s";
psql -q -e -n $USER < $s >& $s.out;
psql -q -e -n $USER < $s > $s.out 2>&1;
diff $s.out results/$s.out;
end