mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	(Organizationally Unique Identifiers). This is the manufacturer's code in the MAC address.
		
			
				
	
	
		
			26 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			314 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /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
 |