altocompta/contrib/sql-utility/get-sql.sh
2006-05-01 18:05:24 +00:00

22 lines
265 B
Bash
Executable file

#!/bin/bash
#
#
# Author Dany De Bontridder
# Under the GPL 2 minimun
#
Help () {
cat <<_eof
$0 [option] database
-f function only
_eof
}
if [ $# -lt 2 ]; then
Help
fi
case "$1" in
-f)
pg_dump -s "$2"|awk '/CREATE FUNCTION/,/LANGUAGE/ { print $0;}'
esac