mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
314 B
26 lines
314 B
|
26 years ago
|
#! /bin/sh
|
||
|
|
# Utility to remove manufacturer's oui table
|
||
|
|
|
||
|
|
args=
|
||
|
|
|
||
|
|
while [ $# -gt 0 ]
|
||
|
|
do
|
||
|
|
case "$1" in
|
||
|
|
--help)
|
||
|
|
echo "Usage: $0 dbname"
|
||
|
|
exit
|
||
|
|
;;
|
||
|
|
*)
|
||
|
|
args="$args $1"
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
shift
|
||
|
|
done
|
||
|
|
|
||
|
|
psql $args <<EOF
|
||
|
|
drop function manuf(macaddr);
|
||
|
|
drop table macoui;
|
||
|
|
EOF
|
||
|
|
|
||
|
|
exit
|